✨ add base module w/ automatic gc
This commit is contained in:
12
modules/base/default.nix
Normal file
12
modules/base/default.nix
Normal file
@ -0,0 +1,12 @@
|
||||
{ pkgs, config, ... }: {
|
||||
environment.systemPackages = with pkgs; [
|
||||
inetutils
|
||||
vim
|
||||
];
|
||||
nix = {
|
||||
gc = {
|
||||
automatic = true;
|
||||
persistent = true;
|
||||
};
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user