diff options
Diffstat (limited to 'programs/feh.nix')
-rw-r--r-- | programs/feh.nix | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/programs/feh.nix b/programs/feh.nix new file mode 100644 index 0000000..2e15fe4 --- /dev/null +++ b/programs/feh.nix | |||
@@ -0,0 +1,14 @@ | |||
1 | { config | ||
2 | , pkgs | ||
3 | , ... | ||
4 | }: | ||
5 | |||
6 | { | ||
7 | programs.feh = { | ||
8 | enable = true; | ||
9 | buttons = { | ||
10 | zoom_in = "C-5"; | ||
11 | zoom_out = "C-4"; | ||
12 | }; | ||
13 | }; | ||
14 | } | ||