lxc support for alexandria

This commit is contained in:
William 2026-02-15 22:21:33 -03:00
parent 91f37f9023
commit 10f823a3a6
2 changed files with 18 additions and 0 deletions

View file

@ -27,6 +27,7 @@
# other aspects # other aspects
fwupd fwupd
lxc
]); ]);
}; };
} }

17
aspects/lxc.nix Normal file
View file

@ -0,0 +1,17 @@
{ ... }:
{
flake.modules.nixos.lxc =
{
config,
lib,
pkgs,
...
}:
{
virtualisation.lxc = {
enable = true;
unprivilegedContainers = true;
};
};
}