Skip to content

Commit

Permalink
Merge pull request NixOS#71338 from edef1c/nix-daemon-opt-aliases
Browse files Browse the repository at this point in the history
nixos/nix-daemon: don't refer to deprecated option aliases
  • Loading branch information
edef1c authored Oct 21, 2019
2 parents 7474d9c + a68219b commit 0599c89
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -242,8 +242,8 @@ in
environment.variables = hydraEnv;

nix.extraOptions = ''
gc-keep-outputs = true
gc-keep-derivations = true
keep-outputs = true
keep-derivations = true
# The default (`true') slows Nix down a lot since the build farm
# has so many GC roots.
Expand Down
4 changes: 2 additions & 2 deletions nixos/modules/services/misc/nix-daemon.nix
Original file line number Diff line number Diff line change
Expand Up @@ -152,8 +152,8 @@ in
type = types.lines;
default = "";
example = ''
gc-keep-outputs = true
gc-keep-derivations = true
keep-outputs = true
keep-derivations = true
'';
description = "Additional text appended to <filename>nix.conf</filename>.";
};
Expand Down

0 comments on commit 0599c89

Please sign in to comment.