configs/appserver/incus.nix

13 lines
168 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
];
}