athens/modules/base/default.nix

27 lines
352 B
Nix
Raw Normal View History

2022-12-27 10:10:53 -05:00
{ pkgs, ... }: {
2023-01-31 22:01:21 -05:00
imports = [ ./common.nix ];
2022-11-09 23:24:40 -05:00
environment.systemPackages = with pkgs; [
inetutils
vim
];
2023-03-25 15:17:55 -04:00
2022-11-09 23:24:40 -05:00
nix = {
gc = {
persistent = true;
2023-02-13 17:31:23 -05:00
dates = "weekly";
2022-11-09 23:24:40 -05:00
};
2023-01-30 22:06:36 -05:00
settings = {
trusted-users = [ "root" "walkah" ];
};
2022-11-09 23:24:40 -05:00
};
2023-03-25 15:17:55 -04:00
programs = {
mosh.enable = true;
};
system.stateVersion = "23.05";
2022-11-09 23:24:40 -05:00
}