19 lines
225 B
Nix
19 lines
225 B
Nix
|
{
|
||
|
imports = [
|
||
|
./lxd-preseed.nix
|
||
|
./lxd-networking.nix
|
||
|
];
|
||
|
|
||
|
virtualisation = {
|
||
|
lxd = {
|
||
|
enable = true;
|
||
|
|
||
|
recommendedSysctlSettings = true;
|
||
|
};
|
||
|
|
||
|
lxc = {
|
||
|
lxcfs.enable = true;
|
||
|
};
|
||
|
};
|
||
|
}
|