mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 16:59:43 +01:00
cb09a968e9
This option provides a more convenient way to overlay dummy packages. It also adds a function `config.lib.test.mkStubPackage` that can, e.g., be used for `package` options.
42 lines
555 B
Nix
42 lines
555 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; };
|
|
};
|
|
|
|
test.stubs.lf = { };
|
|
|
|
nmt.script = ''
|
|
assertFileExists home-files/.config/lf/lfrc
|
|
assertFileContent home-files/.config/lf/lfrc ${expected}
|
|
'';
|
|
};
|
|
}
|