Skip to content

Commit

Permalink
feat(home-manager): add zathura
Browse files Browse the repository at this point in the history
  • Loading branch information
ajgon committed Nov 5, 2024
1 parent afdc0f3 commit 6284dde
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
1 change: 1 addition & 0 deletions modules/apps/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,6 @@ _: {
./rofi
./syncthing
./thunderbird
./zathura
];
}
15 changes: 15 additions & 0 deletions modules/apps/zathura/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{ config, lib, ... }:
let
cfg = config.myHomeApps.zathura;
in
{
options.myHomeApps.zathura = {
enable = lib.mkEnableOption "zathura";
};

config = lib.mkIf cfg.enable {
stylix.targets.zathura.enable = true;

programs.zathura.enable = true;
};
}

0 comments on commit 6284dde

Please sign in to comment.