This commit is contained in:
pazpi 2024-09-13 13:31:59 +02:00
parent 1d868976b8
commit 07fb22e47e
8 changed files with 48 additions and 38 deletions

View file

@ -1,11 +1,14 @@
# Starting image for LXC containers on Proxmox
{ config, pkgs, modulesPath, ... }:
{
config,
pkgs,
modulesPath,
...
}:
{
imports = [
(modulesPath + "/virtualisation/proxmox-lxc.nix")
];
imports = [ (modulesPath + "/virtualisation/proxmox-lxc.nix") ];
users = {
users.root = {
@ -16,7 +19,10 @@
};
};
nix.settings.experimental-features = [ "nix-command" "flakes" ];
nix.settings.experimental-features = [
"nix-command"
"flakes"
];
# Auto update
system.autoUpgrade.enable = true;