mirror of
https://github.com/nix-community/home-manager
synced 2024-11-05 02:39:45 +01:00
26 lines
616 B
Nix
26 lines
616 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" ''
|
|
content_search_max_file_size = "10MB"
|
|
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]
|
|
|
|
[special_paths]
|
|
"/media" = "no-enter"
|
|
''
|
|
}
|
|
'';
|
|
}
|