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

15 lines
231 B
Nix

{ pkgs, ... }:
{
imports = [
./lxd-preseed.nix
];
networking.nftables.enable = true;
networking.firewall.enable = false;
virtualisation = {
incus = {
package = pkgs.incus;
enable = true;
};
};
}