added incus to laptop

This commit is contained in:
Geir Okkenhaug Jerstad 2024-06-18 12:12:36 +02:00
parent d333548e62
commit 5870348b72
2 changed files with 13 additions and 2 deletions

9
laptop/incus.nix Normal file
View file

@ -0,0 +1,9 @@
{ config, pkgs, ... }:
{
virtualisation.incus.enable = true;
environment.systemPackages = with pkgs; [
incus
lxc
];
}