75fa0ae5af
GitOrigin-RevId: c3ab5ea047e6dc73df530948f7367455749d8906
13 lines
240 B
Nix
13 lines
240 B
Nix
{ ... }:
|
|
|
|
{
|
|
programs.broot = {
|
|
enable = true;
|
|
settings.modal = true;
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertFileExists home-files/.config/broot/conf.toml
|
|
assertFileContains home-files/.config/broot/conf.toml 'modal = true'
|
|
'';
|
|
}
|