nits: fix comments/improve docs

This commit is contained in:
colin 2023-01-27 00:00:50 +00:00
parent d419e10f10
commit 8ad4d8a4f9
2 changed files with 3 additions and 1 deletions

View File

@ -173,7 +173,7 @@ in
'';
sane.packages.extraGuiPkgs = [ package ];
# flood the cache to disk to avoid it taking up too much tmp
# flush the cache to disk to avoid it taking up too much tmp
sane.persist.home.byPath."${cfg.browser.cacheDir}" = lib.mkIf (cfg.persistCache != null) {
store = cfg.persistCache;
};

View File

@ -160,7 +160,9 @@ let
store-names;
in {
byPath = lib.mkMerge (concatLists [
# convert the list-style per-store entries into attrsOf entries
(applyToAllStores (store: dirToAttrs))
# add the `store` attr to everything we ingested
(applyToAllStores annotateWithStore)
]);
};