diff --git a/home/default.nix b/home/default.nix index ea6fa90..eabc35b 100644 --- a/home/default.nix +++ b/home/default.nix @@ -32,6 +32,7 @@ ./hyfetch ./wget ./xdg + ./zathura ]; # This value determines the Home Manager release that your configuration is diff --git a/home/zathura/default.nix b/home/zathura/default.nix new file mode 100644 index 0000000..3424f0f --- /dev/null +++ b/home/zathura/default.nix @@ -0,0 +1,7 @@ +{...}: { + programs.zathura = { + enable = true; + + rose-pine.enable = true; + }; +}