add nix-tools to environment.systemPackages by default

This commit is contained in:
Daiderd Jordan 2016-12-11 16:33:42 +01:00
parent 41d40d0417
commit da4433fbf8
No known key found for this signature in database
GPG key ID: D02435D05B810C96
5 changed files with 17 additions and 11 deletions

View file

@ -4,10 +4,7 @@
# List packages installed in system profile. To search by name, run:
# $ nix-env -qaP | grep wget
environment.systemPackages =
[ # Include nix-tools
config.system.build.nix
pkgs.nix-repl
[ pkgs.nix-repl
];
environment.etc."bashrc".text = ''
@ -25,4 +22,7 @@
${config.system.build.setEnvironment}
${config.system.build.setAliases}
'';
services.activate-system.enable = true;
}