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; - }; - }; -}