1
0
mirror of https://github.com/ellmau/nixos.git synced 2025-12-19 09:29:36 +01:00

Fix comma indexing service

This commit is contained in:
Stefan Ellmauthaler 2023-03-23 09:58:16 +01:00
parent 14dd7591a6
commit 8f0acd8c96
Failed to extract signature

View File

@ -30,7 +30,7 @@ with lib; {
IOSchedulingClass = "idle"; IOSchedulingClass = "idle";
ExecStartPre = [ ExecStartPre = [
"+${pkgs.coreutils}/bin/mkdir -p /var/db/nix-index/" "+${pkgs.coreutils}/bin/mkdir -p /var/db/nix-index/"
"+${pkgs.coreutils}/bin/chown nobody:nobody /var/db/nix-index/" "+${pkgs.coreutils}/bin/chown nobody:nogroup /var/db/nix-index/"
]; ];
ExecStart = toString nix-index-db-update; ExecStart = toString nix-index-db-update;
User = "nobody"; User = "nobody";