1
0
Fork 0
forked from emily/nixfiles
nixfiles-emily/config/profiles/lxc.nix
emily 1de66b3795
fixed deployment
weird thing happen when you try to copy things from a binary cache to
a local store
2024-05-14 16:23:51 +02:00

19 lines
395 B
Nix

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