11 lines
122 B
Nix
11 lines
122 B
Nix
|
{ config
|
||
|
, lib
|
||
|
, pkgs
|
||
|
, modulesPath
|
||
|
, ...
|
||
|
}: {
|
||
|
imports = [
|
||
|
(modulesPath + "/virtualisation/proxmox-lxc.nix")
|
||
|
];
|
||
|
}
|