File tree 2 files changed +8
-16
lines changed
2 files changed +8
-16
lines changed Original file line number Diff line number Diff line change 41
41
if network ? nixpkgs
42
42
then ( builtins . head ( network . nixpkgs ) ) . lib . nixosSystem
43
43
else throw "NixOps network must have a 'nixpkgs' attribute"
44
- else import ( pkgs . path + " /nixos/lib/eval-config.nix" ) ;
44
+ else import <nixpkgs /nixos/lib/eval-config.nix> ;
45
45
46
46
pkgs = if flakeUri != null
47
47
then
48
48
if network ? nixpkgs
49
49
then ( builtins . head network . nixpkgs ) . legacyPackages . ${ system }
50
50
else throw "NixOps network must have a 'nixpkgs' attribute"
51
- else ( builtins . head ( network . network ) ) . nixpkgs or ( import <nixpkgs> { inherit system ; } ) ;
51
+ else import <nixpkgs> { inherit system ; } ;
52
52
53
53
inherit ( pkgs ) lib ;
54
54
55
- # Expose path to imported nixpkgs (currently only used to find version suffix)
56
- nixpkgs = builtins . unsafeDiscardStringContext pkgs . path ;
57
-
58
55
in rec {
59
56
60
57
inherit networks network ;
61
- inherit nixpkgs ;
62
58
63
59
importedPluginNixExprs = map
64
60
( expr : import expr )
@@ -86,7 +82,6 @@ in rec {
86
82
in
87
83
{ name = machineName ;
88
84
value = evalConfig {
89
- inherit pkgs ;
90
85
modules =
91
86
modules ++
92
87
defaults ++
@@ -177,11 +172,7 @@ in rec {
177
172
pluginDeploymentConfigExporters
178
173
) ) ;
179
174
180
- network =
181
- builtins . removeAttrs
182
- ( lib . fold ( as : bs : as // bs ) { } ( network' . network or [ ] ) )
183
- [ "nixpkgs" ] # Not serialisable
184
- ;
175
+ network = lib . fold ( as : bs : as // bs ) { } ( network' . network or [ ] ) ;
185
176
186
177
resources =
187
178
let
@@ -254,5 +245,4 @@ in rec {
254
245
getNixOpsArgs = fs : lib . zipAttrs ( lib . unique ( lib . concatMap fileToArgs ( getNixOpsExprs fs ) ) ) ;
255
246
256
247
nixopsArguments = getNixOpsArgs networkExprs ;
257
-
258
248
}
Original file line number Diff line number Diff line change @@ -791,9 +791,11 @@ def build_configs(
791
791
# Set the NixOS version suffix, if we're building from Git.
792
792
# That way ‘nixos-version’ will show something useful on the
793
793
# target machines.
794
- #
795
- # TODO: Implement flake compatible version
796
- nixos_path = str (self .evaluate_config ("nixpkgs" ))
794
+ nixos_path = subprocess .check_output (
795
+ ["nix-instantiate" , "--find-file" , "nixpkgs/nixos" ]
796
+ + self ._nix_path_flags (),
797
+ text = True ,
798
+ ).rstrip ()
797
799
get_version_script = nixos_path + "/modules/installer/tools/get-version-suffix"
798
800
if os .path .exists (nixos_path + "/.git" ) and os .path .exists (get_version_script ):
799
801
self .nixos_version_suffix = subprocess .check_output (
You can’t perform that action at this time.
0 commit comments