From b7bb888e986d9330421517dd0ef18efef9774a4e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Madeleine=20Sydney=20=C5=9Alaga?= Date: Thu, 2 Apr 2026 08:58:41 -0600 Subject: [PATCH] feat(zathura): init module --- modules/home/users/msyds/zathura.nix | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 modules/home/users/msyds/zathura.nix diff --git a/modules/home/users/msyds/zathura.nix b/modules/home/users/msyds/zathura.nix new file mode 100644 index 0000000..a31d91e --- /dev/null +++ b/modules/home/users/msyds/zathura.nix @@ -0,0 +1,14 @@ +{ config, lib, pkgs, ... }: + +let cfg = config.sydnix.users.msyds.zathura; +in { + options.sydnix.users.msyds.zathura = { + enable = lib.mkEnableOption "Zathura"; + }; + + config = lib.mkIf cfg.enable { + programs.zathura = { + enable = true; + }; + }; +}