configs/laptop/incus.nix
Geir Okkenhaug Jerstad 5870348b72 added incus to laptop
2024-06-18 12:12:36 +02:00

10 lines
133 B
Nix

{ config, pkgs, ... }:
{
virtualisation.incus.enable = true;
environment.systemPackages = with pkgs; [
incus
lxc
];
}