8 lines
128 B
Nix
8 lines
128 B
Nix
{ pkgs, config, ... }:
|
|
{
|
|
virtualisation.incus = {
|
|
enable = true;
|
|
};
|
|
networking.firewall.allowedTCPPorts = [ 8443 ];
|
|
}
|