aboutsummaryrefslogtreecommitdiff
path: root/home-manager/tests/modules/programs/lf/no-pv-keybind.nix
blob: 524a41a36430dc9a19dd4be6c7efb5617b9fc662 (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
34
35
36
37
38
39
40
41
42
43
{ config, lib, pkgs, ... }:

with lib;

let
  pvScript = builtins.toFile "pv.sh" "cat $1";
  expected = builtins.toFile "settings-expected" ''








    set previewer ${pvScript}



    # More config...

  '';
in {
  config = {
    programs.lf = {
      enable = true;

      extraConfig = ''
        # More config...
      '';

      previewer = { source = pvScript; };
    };

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

    nmt.script = ''
      assertFileExists home-files/.config/lf/lfrc
      assertFileContent home-files/.config/lf/lfrc ${expected}
    '';
  };
}