emily
1de66b3795
weird thing happen when you try to copy things from a binary cache to a local store
19 lines
395 B
Nix
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;
|
|
}
|