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

16 lines
355 B
Nix

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