diff options
author | Franck Cuny <franck@fcuny.net> | 2022-02-08 16:41:41 -0800 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-02-08 16:41:41 -0800 |
commit | 3c56f43fbfaecf674d2cc73b5c4ad76c2ca7f58c (patch) | |
tree | bf3eba8d3fcfe9052e1a3275dbf4d3725d092b7f | |
parent | desktop: add sound (diff) | |
download | world-3c56f43fbfaecf674d2cc73b5c4ad76c2ca7f58c.tar.gz |
systems: move some packages out of host config
Diffstat (limited to '')
-rw-r--r-- | hosts/carmel/configuration.nix | 5 | ||||
-rw-r--r-- | modules/systems/software.nix | 1 |
2 files changed, 1 insertions, 5 deletions
diff --git a/hosts/carmel/configuration.nix b/hosts/carmel/configuration.nix index f04b8b9..88ff269 100644 --- a/hosts/carmel/configuration.nix +++ b/hosts/carmel/configuration.nix @@ -49,11 +49,6 @@ # extraGroups = [ "wheel" ]; # Enable ‘sudo’ for the user. # }; - environment.systemPackages = with pkgs; [ - vim - git - ]; - # Some programs need SUID wrappers, can be configured further or are # started in user sessions. # programs.mtr.enable = true; diff --git a/modules/systems/software.nix b/modules/systems/software.nix index bedaf24..897b931 100644 --- a/modules/systems/software.nix +++ b/modules/systems/software.nix @@ -18,5 +18,6 @@ tcpdump tmux unzip + vim ]; } |