athens/modules/base/default.nix

13 lines
180 B
Nix

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