mirror of
https://github.com/nix-community/home-manager
synced 2024-11-15 07:39:46 +01:00
7da74ff66d
Also revert bad backport of broot test.
22 lines
515 B
Nix
22 lines
515 B
Nix
{ ... }:
|
|
|
|
{
|
|
programs.broot = {
|
|
enable = true;
|
|
settings.modal = true;
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertFileExists home-files/.config/broot/conf.toml
|
|
assertFileContent home-files/.config/broot/conf.toml ${
|
|
builtins.toFile "broot.expected" ''
|
|
imports = ["verbs.hjson", {file = "dark-blue-skin.hjson", luma = ["dark", "unknown"]}, {file = "white-skin.hjson", luma = "light"}]
|
|
modal = true
|
|
show_selection_mark = true
|
|
verbs = []
|
|
|
|
[skin]
|
|
''
|
|
}
|
|
'';
|
|
}
|