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

16 lines
347 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-01-17 14:34:33 +01:00
kyouma.machine-type.virtual = true;
deployment.tags = [ "pve-lxc" ];
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
}