gc
This commit is contained in:
parent
7242dbb293
commit
e487304e44
1 changed files with 10 additions and 0 deletions
|
@ -5,10 +5,18 @@
|
|||
./users.nix
|
||||
./motd.nix
|
||||
];
|
||||
|
||||
nix = {
|
||||
package = pkgs.lix;
|
||||
settings.experimental-features = [ "nix-command" "flakes" ];
|
||||
};
|
||||
|
||||
nix.gc = {
|
||||
automatic = true;
|
||||
options = "--delete-older-than 14d";
|
||||
randomizedDelaySec = "30min";
|
||||
};
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
vim
|
||||
wget
|
||||
|
@ -19,6 +27,7 @@
|
|||
git
|
||||
podman-tui
|
||||
];
|
||||
|
||||
services.dbus.enable = true;
|
||||
services.dbus.implementation = "broker";
|
||||
programs.mtr.enable = true;
|
||||
|
@ -28,6 +37,7 @@
|
|||
wheelNeedsPassword = false;
|
||||
execWheelOnly = true;
|
||||
};
|
||||
|
||||
networking.firewall.enable = false;
|
||||
services.openssh = {
|
||||
enable = true;
|
||||
|
|
Loading…
Reference in a new issue