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