1
0
Fork 0
forked from emily/nixfiles
nixfiles-emily/config/lxc.nix
2024-01-09 16:23:24 +01:00

16 lines
349 B
Nix

{ config, pkgs, lib, modulesPath, ... }:
with lib; {
imports = [
(modulesPath + "/virtualisation/proxmox-lxc.nix")
];
proxmoxLXC = {
manageNetwork = true;
manageHostName = true;
};
system.autoUpgrade.enable = true;
nix.optimise.automatic = true;
nix.gc.automatic = true;
nix.gc.options = "--delete-older-than 2d";
}