mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 12:29:19 -08:00
chore: lean closures
This commit is contained in:
parent
c06a1e9d79
commit
ee2618061d
1 changed files with 11 additions and 2 deletions
|
|
@ -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";
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue