mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 16:59:43 +01:00
22 lines
344 B
Nix
22 lines
344 B
Nix
|
{ 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 ~/
|
||
|
''
|
||
|
}
|
||
|
'';
|
||
|
}
|