summaryrefslogtreecommitdiff
path: root/modules/nixos/lxc.nix
blob: bfdab8f222520a8347383de5499251d07ae8c360 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
  config,
  lib,
  ...
}:
with lib; let
  cfg = config.nixfiles.modules.lxc;
in {
  options.nixfiles.modules.lxc.enable = mkEnableOption "LXC/Incus";

  config = mkIf cfg.enable {
    virtualisation.incus.enable = true;
    my.extraGroups = ["incus-admin"];
  };
}