this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

ci: make runtime e2e flake pure

Khue Doan 1f20f18b e0ebc82d

+3 -3
+3 -3
tests/e2e/run.py
··· 204 204 let 205 205 system = "x86_64-linux"; 206 206 keyModule = import ./ssh-key.nix; 207 - e2eModule = import "{os.environ["NIXIE_REPO"]}/tests/e2e/module.nix"; 207 + e2eModule = import (nixie.outPath + "/tests/e2e/module.nix"); 208 208 mkMachine = 209 209 hostName: 210 210 nixpkgs.lib.nixosSystem {{ 211 211 inherit system; 212 212 modules = [ 213 213 disko.nixosModules.disko 214 - "{os.environ["NIXIE_REPO"]}/examples/configuration.nix" 214 + (nixie.outPath + "/examples/configuration.nix") 215 215 {{ 216 216 networking.hostName = hostName; 217 217 }} ··· 225 225 e2e-installer = nixpkgs.lib.nixosSystem {{ 226 226 inherit system; 227 227 modules = [ 228 - "{os.environ["NIXIE_REPO"]}/examples/installer.nix" 228 + (nixie.outPath + "/examples/installer.nix") 229 229 nixie.nixosModules.nixie-agent 230 230 e2eModule 231 231 keyModule