fcc4259cdb
* ranger: stub tests * alacritty: stub tests * broot: stub tests * zsh: stub tests * vim-vint: stub tests
18 lines
298 B
Nix
18 lines
298 B
Nix
{ ... }:
|
|
|
|
{
|
|
programs.broot = {
|
|
enable = true;
|
|
settings.modal = true;
|
|
};
|
|
|
|
tests.stubs = {
|
|
broot = { };
|
|
hjson = { };
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertFileExists home-files/.config/broot/conf.toml
|
|
assertFileContains home-files/.config/broot/conf.toml 'modal = true'
|
|
'';
|
|
}
|