dot

NixOS dotfiles
git clone https://git.echoz.io/dot.git
Log | Files | Refs

commit 4ee472e7c7cf796e5bd75656242101ae383e098b
parent 3d426243d196b6c578df7612cddc8c3fc237fdde
Author: Chris <chris@echoz.io>
Date:   Wed, 22 Oct 2025 15:25:40 +0200

feat: add swayimg

Diffstat:
Amodules/swayimg/default.nix | 13+++++++++++++
1 file changed, 13 insertions(+), 0 deletions(-)

diff --git a/modules/swayimg/default.nix b/modules/swayimg/default.nix @@ -0,0 +1,13 @@ +{ user, ... }: +{ + home-manager.users.${user}.programs.swayimg = { + enable = true; + settings = { + "keys.viewer" = { + MouseRight = "mode gallery"; + ScrollUp = "zoom +10"; + ScrollDown = "zoom -10"; + }; + }; + }; +}