diff options
Diffstat (limited to '')
-rw-r--r-- | modules/libvirtd.nix | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/modules/libvirtd.nix b/modules/libvirtd.nix index 4846364..4024d42 100644 --- a/modules/libvirtd.nix +++ b/modules/libvirtd.nix @@ -4,14 +4,13 @@ pkgs, ... }: -with lib; let cfg = config.nixfiles.modules.libvirtd; in { - options.nixfiles.modules.libvirtd.enable = mkEnableOption "libvirtd"; + options.nixfiles.modules.libvirtd.enable = lib.mkEnableOption "libvirtd"; - config = mkIf cfg.enable { + config = lib.mkIf cfg.enable { ark.directories = [ "/var/lib/libvirt" ]; hm.home.packages = with pkgs; [ |