nixfiles/config/profiles/lxc.nix
2024-05-14 12:24:04 +02:00

22 lines
420 B
Nix

{ config, pkgs, lib, modulesPath, ... }:
with lib; {
imports = [
(modulesPath + "/virtualisation/proxmox-lxc.nix")
];
proxmoxLXC = {
manageNetwork = true;
manageHostName = true;
};
kyouma ={
machine-type.virtual = true;
deployment = {
tags = [ "pve-lxc" ];
upgradeSystem.allowReboot = false;
};
};
networking.useDHCP = false;
networking.useHostResolvConf = false;
}