athens/modules/base/default.nix

13 lines
180 B
Nix
Raw Normal View History

2022-11-09 23:24:40 -05:00
{ pkgs, config, ... }: {
environment.systemPackages = with pkgs; [
inetutils
vim
];
nix = {
gc = {
automatic = true;
persistent = true;
};
};
}