diff options
Diffstat (limited to 'modules/hm/sils/zathura.nix')
| -rw-r--r-- | modules/hm/sils/zathura.nix | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/modules/hm/sils/zathura.nix b/modules/hm/sils/zathura.nix new file mode 100644 index 0000000..22529a3 --- /dev/null +++ b/modules/hm/sils/zathura.nix @@ -0,0 +1,14 @@ +{ + config, + lib, + ... +}: let + cfg = config.sils.zathura; +in { + options.sils.zathura.enable = lib.mkEnableOption "zathura"; + config = lib.mkIf cfg.enable { + programs.zathura = { + enable = true; + }; + }; +} |
