diff options
author | Alan Pearce | 2023-03-14 09:24:31 +0100 |
---|---|---|
committer | Alan Pearce | 2023-03-14 16:30:42 +0100 |
commit | 00196c387a513914ab785b2e0476b904cf292454 (patch) | |
tree | 337383c645c64a3bafd0ce48e9be323a483638fe | |
parent | f2e50f620d8a0d5da6bd07b792a0596270919d41 (diff) | |
download | nixfiles-00196c387a513914ab785b2e0476b904cf292454.tar.lz nixfiles-00196c387a513914ab785b2e0476b904cf292454.tar.zst nixfiles-00196c387a513914ab785b2e0476b904cf292454.zip |
Move nix development packages to nix.nix
-rw-r--r-- | user/settings/development/base.nix | 3 | ||||
-rw-r--r-- | user/settings/nix.nix | 4 |
2 files changed, 4 insertions, 3 deletions
diff --git a/user/settings/development/base.nix b/user/settings/development/base.nix index d57680bd..96429c1d 100644 --- a/user/settings/development/base.nix +++ b/user/settings/development/base.nix @@ -15,9 +15,6 @@ mosh - nix-prefetch-scripts - alejandra # nix formatter - httpie jq ] diff --git a/user/settings/nix.nix b/user/settings/nix.nix index f7f0a44c..77fb0145 100644 --- a/user/settings/nix.nix +++ b/user/settings/nix.nix @@ -4,6 +4,10 @@ ... }: { nixpkgs.config = import ../config.nix; + home.packages = with pkgs; [ + nix-prefetch-scripts + alejandra # nix formatter + ]; nixpkgs.overlays = [ (import ../overlays/extra-packages.nix) ]; |