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

19 lines
360 B
Nix
Raw Normal View History

2024-06-12 15:00:55 +02:00
{ 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-18 16:03:31 +01:00
networking.useHostResolvConf = false;
2024-01-10 13:32:18 +01:00
}