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
|
|
|
|
];
|
|
|
|
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-02-20 13:28:35 -05:00
|
|
|
|
|
|
|
system.stateVersion = "23.05";
|
2022-11-09 23:24:40 -05:00
|
|
|
}
|