2020-10-12 00:22:58 +00:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let expected = builtins.toFile "settings-expected" "\n\n\n\n\n\n\n\n\n\n\n";
|
|
|
|
in {
|
|
|
|
config = {
|
|
|
|
programs.lf = { enable = true; };
|
|
|
|
|
2021-11-04 16:42:44 +00:00
|
|
|
test.stubs.lf = { };
|
2020-10-12 00:22:58 +00:00
|
|
|
|
|
|
|
nmt.script = ''
|
|
|
|
assertFileExists home-files/.config/lf/lfrc
|
|
|
|
assertFileContent home-files/.config/lf/lfrc ${expected}
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|