1
0
Fork 0
mirror of https://github.com/nix-community/home-manager synced 2024-10-22 21:17:27 +02:00
home-manager/tests/modules/programs/vifm/example-settings.nix

22 lines
344 B
Nix
Raw Normal View History

2022-09-09 02:42:53 +02:00
{ config, ... }:
{
programs.vifm = {
enable = true;
package = config.lib.test.mkStubPackage { };
extraConfig = ''
mark h ~/
'';
};
nmt.script = ''
assertFileContent \
home-files/.config/vifm/vifmrc \
${
builtins.toFile "vifm-expected.conf" ''
mark h ~/
''
}
'';
}