summaryrefslogtreecommitdiff
path: root/modules/nixos/lxc.nix
blob: 130649734f6978fa00f58421ed97ac1fc9ded68e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
  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"];
  };
}