nixos/hosts/common/optional/lxd/default.nix

19 lines
225 B
Nix
Raw Normal View History

2024-06-29 14:40:10 +01:00
{
imports = [
./lxd-preseed.nix
./lxd-networking.nix
];
virtualisation = {
lxd = {
enable = true;
recommendedSysctlSettings = true;
};
lxc = {
lxcfs.enable = true;
};
};
}