chore: lean closures

This commit is contained in:
arcnmx 2024-02-19 09:08:42 -08:00
parent c06a1e9d79
commit ee2618061d

View file

@ -1,10 +1,19 @@
{
lib,
modulesPath,
...
}: {
}: let
inherit (lib.modules) mkDefault;
in {
imports = [
(modulesPath + "/virtualisation/proxmox-lxc.nix")
];
services.getty.autologinUser = "root";
services.getty.autologinUser = mkDefault "root";
documentation.enable = mkDefault false;
environment.variables = {
# nix default is way too big
GC_INITIAL_HEAP_SIZE = mkDefault "8M";
};
}