diff options
| author | Robert Hensing <robert@roberthensing.nl> | 2020-08-16 10:15:15 +0200 |
|---|---|---|
| committer | Robert Hensing <robert@roberthensing.nl> | 2020-08-16 10:15:18 +0200 |
| commit | 58e6ca77d92d400c23609a27462547438b1122a5 (patch) | |
| tree | 6d85b61aa853ce8eb63e17beb2940750b98fe572 /modules/documentation | |
| parent | 3ba909eb2dd3ddd893604f83048fa76cc2e47e74 (diff) | |
documentation: Don't set localSystem which doesn't exist
This is safe to remove, because it is not referenced anywhere in
nix-darwin.
It should have been discovered way earlier, but a bug in the
module system has allowed this value to be defined until
https://github.com/NixOS/nixpkgs/commit/fd75dc876586bde8cdb683a6952a41132e8db166
Diffstat (limited to 'modules/documentation')
| -rw-r--r-- | modules/documentation/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/documentation/default.nix b/modules/documentation/default.nix index 18dc1b1..34a75ca 100644 --- a/modules/documentation/default.nix +++ b/modules/documentation/default.nix @@ -17,7 +17,7 @@ let options = let scrubbedEval = evalModules { - modules = [ { nixpkgs.localSystem = config.nixpkgs.localSystem; } ] ++ baseModules; + modules = baseModules; args = (config._module.args) // { modules = [ ]; }; specialArgs = { pkgs = scrubDerivations "pkgs" pkgs; }; }; |
