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

  config = mkIf cfg.enable {
    virtualisation.lxd.enable = true;
    my.extraGroups = "lxd";
  };
}