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

14 lines
193 B
Nix

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