aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLinnea Gräf <nea@nea.moe>2025-04-14 18:27:01 +0200
committerLinnea Gräf <nea@nea.moe>2025-04-14 18:27:01 +0200
commit63dbb1d270c511645fb07bb59d1bae0472878d8e (patch)
tree626b9e5f7bbbc92a7c468eef3d1ea0789b002ca1
parent6d1f8d90c306eab202afc99851aa0c4c0c6717ec (diff)
downloadnix-infra-63dbb1d270c511645fb07bb59d1bae0472878d8e.tar.gz
nix-infra-63dbb1d270c511645fb07bb59d1bae0472878d8e.tar.bz2
nix-infra-63dbb1d270c511645fb07bb59d1bae0472878d8e.zip
snapshot: Mo 14. Apr 18:27:01 CEST 2025
-rw-r--r--srv/hadante/configuration.nix29
1 files 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"