1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-03-10 02:36:54 +00:00
home-manager/tests/modules/programs/broot/broot.nix

16 lines
331 B
Nix
Raw Normal View History

{ realPkgs, ... }:
{
2022-12-28 20:49:19 +01:00
programs.broot = {
enable = true;
settings.modal = true;
};
nixpkgs.overlays = [ (self: super: { inherit (realPkgs) broot hjson-go; }) ];
2022-12-28 20:49:19 +01:00
nmt.script = ''
assertFileExists home-files/.config/broot/conf.toml
assertFileContains home-files/.config/broot/conf.toml 'modal = true'
2022-12-28 20:49:19 +01:00
'';
}