1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-03 05:23:32 +02:00

broot: update test to match upstream changes

Fixes #3527
This commit is contained in:
Robert Helgesson 2022-12-28 20:34:43 +01:00
parent a62e4c88d7
commit 18b56e3f7d
No known key found for this signature in database
GPG Key ID: 36BDAA14C2797E89

View File

@ -13,12 +13,16 @@ with lib;
assertFileExists home-files/.config/broot/conf.toml assertFileExists home-files/.config/broot/conf.toml
assertFileContent home-files/.config/broot/conf.toml ${ assertFileContent home-files/.config/broot/conf.toml ${
pkgs.writeText "broot.expected" '' pkgs.writeText "broot.expected" ''
content_search_max_file_size = "10MB"
imports = ["verbs.hjson", {file = "dark-blue-skin.hjson", luma = ["dark", "unknown"]}, {file = "white-skin.hjson", luma = "light"}] imports = ["verbs.hjson", {file = "dark-blue-skin.hjson", luma = ["dark", "unknown"]}, {file = "white-skin.hjson", luma = "light"}]
modal = true modal = true
show_selection_mark = true show_selection_mark = true
verbs = [] verbs = []
[skin] [skin]
[special_paths]
"/media" = "no-enter"
'' ''
} }
''; '';