aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/home-manager/tests/modules/programs/feh/feh-bindings.nix
blob: f6b9e5b6e94404e737416b7f17f845b306ffb28e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{ pkgs, ... }:

{
  config = {
    programs.feh.enable = true;

    programs.feh.buttons = {
      zoom_in = null;
      zoom_out = 4;
      next_img = "C-4";
      prev_img = [ 3 "C-3" ];
    };

    programs.feh.keybindings = {
      zoom_in = null;
      zoom_out = "minus";
      prev_img = [ "h" "Left" ];
    };

    nixpkgs.overlays =
      [ (self: super: { feh = pkgs.writeScriptBin "dummy-feh" ""; }) ];

    nmt.script = ''
      assertFileContent \
        home-files/.config/feh/buttons \
        ${./feh-bindings-expected-buttons}

      assertFileContent \
        home-files/.config/feh/keys \
        ${./feh-bindings-expected-keys}
    '';
  };
}