1
0
Fork 0
forked from emily/nixfiles
nixfiles-emily/config/profiles/lxc.nix

20 lines
395 B
Nix
Raw Normal View History

{ lib, modulesPath, ... }: {
2024-01-10 13:32:18 +01:00
imports = [
(modulesPath + "/virtualisation/proxmox-lxc.nix")
];
proxmoxLXC = {
manageNetwork = true;
manageHostName = true;
};
kyouma = {
2024-05-14 11:10:01 +02:00
machine-type.virtual = true;
deployment = {
tags = [ "pve-lxc" ];
auto-upgrade.allowReboot = false;
2024-05-14 11:10:01 +02:00
};
};
2024-01-10 13:32:18 +01:00
networking.useDHCP = false;
2024-01-18 16:03:31 +01:00
networking.useHostResolvConf = false;
2024-01-10 13:32:18 +01:00
}