From bea47712721aa49dd0fc27c5f3640f812db30dea Mon Sep 17 00:00:00 2001 From: William Date: Mon, 16 Feb 2026 01:05:30 -0300 Subject: [PATCH] lxc on alexandria again --- aspects/hosts/alexandria.nix | 2 +- aspects/lxc.nix | 11 ++++++++--- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/aspects/hosts/alexandria.nix b/aspects/hosts/alexandria.nix index f10dfe7..c0c9f32 100644 --- a/aspects/hosts/alexandria.nix +++ b/aspects/hosts/alexandria.nix @@ -27,7 +27,7 @@ # other aspects fwupd - podman + lxc ]); }; } diff --git a/aspects/lxc.nix b/aspects/lxc.nix index 15da310..4225e0c 100644 --- a/aspects/lxc.nix +++ b/aspects/lxc.nix @@ -9,9 +9,14 @@ ... }: { - virtualisation.lxc = { - enable = true; - unprivilegedContainers = true; + virtualisation = { + lxc = { + enable = true; + unprivilegedContainers = true; + }; + incus.enable = true; }; + + users.users.user.extraGroups = [ "incus-admin" ]; }; }