nixos-servers/services/incus/default.nix

8 lines
128 B
Nix
Raw Permalink Normal View History

2024-06-27 19:10:20 +00:00
{ pkgs, config, ... }:
{
virtualisation.incus = {
enable = true;
};
networking.firewall.allowedTCPPorts = [ 8443 ];
}