nix-files/hosts/common/programs/nix-index.nix

14 lines
291 B
Nix
Raw Normal View History

2023-06-29 21:24:32 +00:00
{ config, lib, ... }:
{
# provides `nix-locate`, backed by the manually run `nix-index`
sane.programs.nix-index = {
2024-02-16 11:39:05 +00:00
sandbox.method = "bwrap";
sandbox.net = "clearnet";
sandbox.extraPaths = [
"/nix"
];
persist.byStore.plaintext = [ ".cache/nix-index" ];
2023-06-29 21:24:32 +00:00
};
}