diff options
author | Freya Murphy <fmurphy@redcom.com> | 2025-09-18 08:49:39 -0400 |
---|---|---|
committer | Freya Murphy <fmurphy@redcom.com> | 2025-09-18 20:37:46 -0400 |
commit | 0267d0db393b7515d694d3a29997fb7be251872e (patch) | |
tree | 8cda5e9203b427d192dfd045c8315c9d273ce57b /system | |
parent | hosts: add work vm (diff) | |
download | dotfiles-nix-0267d0db393b7515d694d3a29997fb7be251872e.tar.gz dotfiles-nix-0267d0db393b7515d694d3a29997fb7be251872e.tar.bz2 dotfiles-nix-0267d0db393b7515d694d3a29997fb7be251872e.zip |
mirror baseline system packages into home
Diffstat (limited to '')
-rw-r--r-- | system/default.nix | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/system/default.nix b/system/default.nix index 9760184..b913bd5 100644 --- a/system/default.nix +++ b/system/default.nix @@ -57,7 +57,7 @@ networking.hostName = config.hostName; # common system packages - environment.systemPackages = with pkgs; [ + extraPackages = with pkgs; [ # editor vim # lib @@ -85,6 +85,8 @@ wget ]; + environment.systemPackages = config.extraPackages; + # system shell programs.zsh.enable = true; |