add base module w/ automatic gc

This commit is contained in:
2022-11-09 23:24:40 -05:00
parent 16d29169e0
commit da846292a6
5 changed files with 24 additions and 9 deletions

12
modules/base/default.nix Normal file
View File

@ -0,0 +1,12 @@
{ pkgs, config, ... }: {
environment.systemPackages = with pkgs; [
inetutils
vim
];
nix = {
gc = {
automatic = true;
persistent = true;
};
};
}