mirror of
https://github.com/nix-community/home-manager.git
synced 2025-03-09 10:16:55 +00:00
15 lines
331 B
Nix
15 lines
331 B
Nix
{ realPkgs, ... }:
|
|
|
|
{
|
|
programs.broot = {
|
|
enable = true;
|
|
settings.modal = true;
|
|
};
|
|
|
|
nixpkgs.overlays = [ (self: super: { inherit (realPkgs) broot hjson-go; }) ];
|
|
|
|
nmt.script = ''
|
|
assertFileExists home-files/.config/broot/conf.toml
|
|
assertFileContains home-files/.config/broot/conf.toml 'modal = true'
|
|
'';
|
|
}
|