mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
4c08f65ab5
We can't test for the whole contents of the config file because that is out of our control and may change unexpectedly. Only check for the settings we know should be set.
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'
|
|
'';
|
|
}
|