summaryrefslogtreecommitdiff
path: root/modules/nixos/lxc.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/nixos/lxc.nix')
-rw-r--r--modules/nixos/lxc.nix18
1 files changed, 0 insertions, 18 deletions
diff --git a/modules/nixos/lxc.nix b/modules/nixos/lxc.nix
deleted file mode 100644
index 1306497..0000000
--- a/modules/nixos/lxc.nix
+++ /dev/null
@@ -1,18 +0,0 @@
-{
- config,
- lib,
- ...
-}:
-with lib; let
- cfg = config.nixfiles.modules.lxc;
-in {
- options.nixfiles.modules.lxc.enable = mkEnableOption "LXC/Incus";
-
- config = mkIf cfg.enable {
- ark.directories = ["/var/lib/incus"];
-
- virtualisation.incus.enable = true;
-
- my.extraGroups = ["incus-admin"];
- };
-}