From ad1bbc9f18a93324dbbb770406a4febd081beeaf Mon Sep 17 00:00:00 2001 From: Michael Thomas Date: Mon, 26 Feb 2024 16:44:03 -0500 Subject: [PATCH] feat: move from zathura to sioyek --- user/environments/mac/home.nix | 2 +- user/modules/applications/sioyek.nix | 5 +++++ user/modules/applications/zathura.nix | 10 ---------- 3 files changed, 6 insertions(+), 11 deletions(-) create mode 100644 user/modules/applications/sioyek.nix delete mode 100644 user/modules/applications/zathura.nix diff --git a/user/environments/mac/home.nix b/user/environments/mac/home.nix index ecf4df0..39d8688 100644 --- a/user/environments/mac/home.nix +++ b/user/environments/mac/home.nix @@ -1,6 +1,6 @@ {pkgs, ...}: { imports = [ - ../../modules/applications/zathura.nix + ../../modules/applications/sioyek.nix ../../modules/zsh.nix ../../modules/dev.nix diff --git a/user/modules/applications/sioyek.nix b/user/modules/applications/sioyek.nix new file mode 100644 index 0000000..e8f5e04 --- /dev/null +++ b/user/modules/applications/sioyek.nix @@ -0,0 +1,5 @@ +{...}: { + programs.sioyek = { + enable = true; + }; +} diff --git a/user/modules/applications/zathura.nix b/user/modules/applications/zathura.nix deleted file mode 100644 index 94c52ac..0000000 --- a/user/modules/applications/zathura.nix +++ /dev/null @@ -1,10 +0,0 @@ -{...}: { - programs.zathura = { - enable = true; - options = { - scroll-page-aware = true; - scroll-full-overlap = "0.01"; - scroll-step = 100; - }; - }; -}