configs/appserver/incus.nix

15 lines
244 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-12-13 14:41:47 +01:00
package = pkgs.incus;
2024-07-24 10:37:34 +02:00
};
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
}