From b7bcc9a4bf2c32723aa4059c7c179fa9e014a4fb Mon Sep 17 00:00:00 2001 From: punkfairie Date: Sat, 26 Oct 2024 21:02:53 -0700 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20feat(zathura):=20Install=20zathura?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- home/default.nix | 1 + home/zathura/default.nix | 7 +++++++ 2 files changed, 8 insertions(+) create mode 100644 home/zathura/default.nix 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; + }; +}