about summary refs log tree commit diff
path: root/nixos/lib
diff options
context:
space:
mode:
authorDavid Arnold <david.arnold@iohk.io>2022-05-26 20:00:05 -0500
committerDavid Arnold <david.arnold@iohk.io>2022-05-26 20:00:05 -0500
commit646e214e114a0965d1b38313de5d221f55f0f787 (patch)
treed14c1e3bd8e35f166d81cae4a650c619768ba3c3 /nixos/lib
parent26b3864c6b355131a015e8f7e06b122175d7c43d (diff)
nixos: remove effect-less nixpgks.initialSystem
- initialSystem was keeping track of the evaluating system
- it had been used by `nesting.children`
- since, 20.09, `nesting.children` has been replaced with named
  specializations

It appears that this option was left over and not cleand up properly.
Diffstat (limited to 'nixos/lib')
-rw-r--r--nixos/lib/eval-config.nix5
1 files changed, 0 insertions, 5 deletions
diff --git a/nixos/lib/eval-config.nix b/nixos/lib/eval-config.nix
index 2daaa8a118632..3b58ef297973e 100644
--- a/nixos/lib/eval-config.nix
+++ b/nixos/lib/eval-config.nix
@@ -50,11 +50,6 @@ let
       # they way through, but has the last priority behind everything else.
       nixpkgs.system = lib.mkDefault system;
 
-      # Stash the value of the `system` argument. When using `nesting.children`
-      # we want to have the same default value behavior (immediately above)
-      # without any interference from the user's configuration.
-      nixpkgs.initialSystem = system;
-
       _module.args.pkgs = lib.mkIf (pkgs_ != null) (lib.mkForce pkgs_);
     };
   };