diff options
author | Théophane Hufschmitt <7226587+thufschmitt@users.noreply.github.com> | 2023-04-03 14:02:45 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-03 14:02:45 +0200 |
commit | 70bb7b72890b962d644411a6f74f8002033b7b5d (patch) | |
tree | b492ff47f86f5bbf3995efc0f5618ddd1184786b /src/nix/main.cc | |
parent | a06ea8db77c5d4b0b6add9b9a8a10fb970418dee (diff) | |
parent | 7c4dea3cf3ef8cc0185163e69d9f3cb3a0fc95ac (diff) |
Merge pull request #7610 from obsidiansystems/gate-default-settings
Punt on improper global flags for now
Diffstat (limited to 'src/nix/main.cc')
-rw-r--r-- | src/nix/main.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/nix/main.cc b/src/nix/main.cc index 54c920b4e..c2e1dda74 100644 --- a/src/nix/main.cc +++ b/src/nix/main.cc @@ -83,6 +83,7 @@ struct NixArgs : virtual MultiCommand, virtual MixCommonArgs .description = "Print full build logs on standard error.", .category = loggingCategory, .handler = {[&]() { logger->setPrintBuildLogs(true); }}, + .experimentalFeature = Xp::NixCommand, }); addFlag({ @@ -98,6 +99,7 @@ struct NixArgs : virtual MultiCommand, virtual MixCommonArgs .description = "Disable substituters and consider all previously downloaded files up-to-date.", .category = miscCategory, .handler = {[&]() { useNet = false; }}, + .experimentalFeature = Xp::NixCommand, }); addFlag({ @@ -105,6 +107,7 @@ struct NixArgs : virtual MultiCommand, virtual MixCommonArgs .description = "Consider all previously downloaded files out-of-date.", .category = miscCategory, .handler = {[&]() { refresh = true; }}, + .experimentalFeature = Xp::NixCommand, }); } |