mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
44 lines
623 B
Nix
44 lines
623 B
Nix
|
{ 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}
|
||
|
'';
|
||
|
};
|
||
|
}
|