athens/modules/base/default.nix
2022-12-27 10:10:53 -05:00

13 lines
172 B
Nix

{ pkgs, ... }: {
environment.systemPackages = with pkgs; [
inetutils
vim
];
nix = {
gc = {
automatic = true;
persistent = true;
};
};
}