17 lines
215 B
Nix
17 lines
215 B
Nix
{ ... }:
|
|
|
|
{
|
|
flake.modules.nixos.lxc =
|
|
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
virtualisation.lxc = {
|
|
enable = true;
|
|
unprivilegedContainers = true;
|
|
};
|
|
};
|
|
}
|