From 63dbb1d270c511645fb07bb59d1bae0472878d8e Mon Sep 17 00:00:00 2001 From: Linnea Gräf Date: Mon, 14 Apr 2025 18:27:01 +0200 Subject: snapshot: Mo 14. Apr 18:27:01 CEST 2025 --- srv/hadante/configuration.nix | 29 +++++++++++++++-------------- 1 file changed, 15 insertions(+), 14 deletions(-) diff --git a/srv/hadante/configuration.nix b/srv/hadante/configuration.nix index 8cbf974..353b3c8 100644 --- a/srv/hadante/configuration.nix +++ b/srv/hadante/configuration.nix @@ -103,25 +103,26 @@ systemd.services."getty@tty1".enable = false; systemd.services."autovt@tty1".enable = false; - # Install firefox. - programs.firefox.enable = true; - # Allow unfree packages nixpkgs.config.allowUnfree = true; - programs.gnupg.agent = { - enable = true; - enableSSHSupport = true; - pinentryPackage = pkgs.pinentry-qt; - }; + programs = { + firefox.enable = true; - programs.zsh = { - enable = true; - shellInit = '' - export ZDOTDIR=~/.config/zsh - ''; - }; + gnupg.agent = { + enable = true; + enableSSHSupport = true; + pinentryPackage = pkgs.pinentry-qt; + }; + zsh = { + enable = true; + shellInit = '' + export ZDOTDIR=~/.config/zsh + ''; + }; + steam.enable = true; + }; nix.settings.experimental-features = [ "nix-command" "flakes" -- cgit