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

14 lines
193 B
Nix
Raw Normal View History

2024-06-30 12:25:44 +01:00
{ pkgs, ... }:
2024-06-29 14:40:10 +01:00
{
imports = [
./lxd-preseed.nix
];
2024-06-30 12:25:44 +01:00
networking.nftables.enable = true;
2024-06-29 14:40:10 +01:00
virtualisation = {
2024-06-30 12:25:44 +01:00
incus = {
package = pkgs.incus;
2024-06-29 14:40:10 +01:00
enable = true;
};
};
}