configs/appserver/incus.nix

14 lines
218 B
Nix
Raw Normal View History

2024-05-20 12:24:36 +02:00
{ config, pkgs, ... }:
{
2024-07-24 10:37:34 +02:00
virtualisation.incus = {
enable = true;
ui.enable = true;
};
2024-05-20 12:24:36 +02:00
environment.systemPackages = with pkgs; [
incus
lxc
];
2024-07-24 12:12:17 +02:00
networking.firewall.allowedTCPPorts = [ 8443 ];
2024-05-20 12:24:36 +02:00
}