diff --git a/nixos/desktop/default.nix b/nixos/desktop/default.nix index 7d66489..58fdf17 100644 --- a/nixos/desktop/default.nix +++ b/nixos/desktop/default.nix @@ -127,10 +127,6 @@ enable = true; }; - programs.zsh = { - enable = true; - }; - virtualisation.podman = { enable = true; dockerCompat = true; @@ -160,7 +156,4 @@ ''; boot.loader.systemd-boot.configurationLimit = 3; boot.loader.efi.canTouchEfiVariables = true; - - # Enable completion of system packages by zsh - environment.pathsToLink = ["/share/zsh"]; } diff --git a/nixos/hosts/queen/configuration.nix b/nixos/hosts/queen/configuration.nix index f27ff53..50f1ce6 100644 --- a/nixos/hosts/queen/configuration.nix +++ b/nixos/hosts/queen/configuration.nix @@ -118,10 +118,6 @@ # Set your time zone. time.timeZone = "Europe/Amsterdam"; - programs.zsh = { - enable = true; - }; - programs.git = { enable = true; }; diff --git a/nixos/hosts/shodan/configuration.nix b/nixos/hosts/shodan/configuration.nix index 1ef0501..4d6232d 100644 --- a/nixos/hosts/shodan/configuration.nix +++ b/nixos/hosts/shodan/configuration.nix @@ -170,10 +170,6 @@ enable = true; }; - programs.zsh = { - enable = true; - }; - programs.git = { enable = true; }; diff --git a/nixos/shared/default.nix b/nixos/shared/default.nix index 221e954..55493b2 100644 --- a/nixos/shared/default.nix +++ b/nixos/shared/default.nix @@ -47,6 +47,13 @@ ]; }; + programs.zsh = { + enable = true; + }; + + # Enable completion of system packages by zsh + environment.pathsToLink = ["/share/zsh"]; + users.mutableUsers = false; users.users.root = {