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

22 lines
420 B
Nix
Raw Normal View History

2024-01-10 13:32:18 +01:00
{ config, pkgs, lib, modulesPath, ... }:
with lib; {
imports = [
(modulesPath + "/virtualisation/proxmox-lxc.nix")
];
proxmoxLXC = {
manageNetwork = true;
manageHostName = true;
};
2024-05-14 11:10:01 +02:00
kyouma ={
machine-type.virtual = true;
deployment = {
tags = [ "pve-lxc" ];
upgradeSystem.allowReboot = false;
};
};
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
}