From ff4e92f2cc96ce4b776fe5de21b54f9c2f897e52 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Mon, 3 Aug 2015 13:48:43 +0200 Subject: Spelling etc --- nixos/modules/misc/locate.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'nixos/modules/misc') diff --git a/nixos/modules/misc/locate.nix b/nixos/modules/misc/locate.nix index bf05c4607295..e85e390acb6e 100644 --- a/nixos/modules/misc/locate.nix +++ b/nixos/modules/misc/locate.nix @@ -35,7 +35,7 @@ in { type = types.listOf types.str; default = [ ]; description = '' - Extra flags to append to updatedb. + Extra flags to pass to updatedb. ''; }; @@ -60,7 +60,7 @@ in { type = types.bool; default = false; description = '' - Whether to include /nix/store in the locate database. + Whether to include /nix/store in the locate database. ''; }; @@ -78,9 +78,9 @@ in { '' mkdir -m 0755 -p $(dirname ${toString cfg.output}) exec updatedb \ - --localuser=${cfg.localuser} \ - ${optionalString (!cfg.includeStore) "--prunepaths='/nix/store'"} \ - --output=${toString cfg.output} ${concatStringsSep " " cfg.extraFlags} + --localuser=${cfg.localuser} \ + ${optionalString (!cfg.includeStore) "--prunepaths='/nix/store'"} \ + --output=${toString cfg.output} ${concatStringsSep " " cfg.extraFlags} ''; serviceConfig.Nice = 19; serviceConfig.IOSchedulingClass = "idle"; -- cgit 1.4.1