lol
0
fork

Configure Feed

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

Revert "nixos/tests/userborn: fix setting hostPlatform"

authored by

nikstur and committed by
GitHub
6c94b746 082fd30a

+12 -12
+3 -3
nixos/tests/userborn-immutable-etc.nix
··· 20 20 meta.maintainers = with lib.maintainers; [ nikstur ]; 21 21 22 22 nodes.machine = 23 - { pkgs, ... }: 23 + { config, ... }: 24 24 { 25 25 imports = [ common ]; 26 26 ··· 36 36 specialisation.new-generation = { 37 37 inheritParentConfig = false; 38 38 configuration = { 39 - nixpkgs.hostPlatform = { 40 - inherit (pkgs.stdenv.hostPlatform) system; 39 + nixpkgs = { 40 + inherit (config.nixpkgs) hostPlatform; 41 41 }; 42 42 imports = [ common ]; 43 43
+3 -3
nixos/tests/userborn-immutable-users.nix
··· 16 16 meta.maintainers = with lib.maintainers; [ nikstur ]; 17 17 18 18 nodes.machine = 19 - { pkgs, ... }: 19 + { config, ... }: 20 20 { 21 21 imports = [ common ]; 22 22 ··· 32 32 specialisation.new-generation = { 33 33 inheritParentConfig = false; 34 34 configuration = { 35 - nixpkgs.hostPlatform = { 36 - inherit (pkgs.stdenv.hostPlatform) system; 35 + nixpkgs = { 36 + inherit (config.nixpkgs) hostPlatform; 37 37 }; 38 38 imports = [ common ]; 39 39
+3 -3
nixos/tests/userborn-mutable-etc.nix
··· 20 20 meta.maintainers = with lib.maintainers; [ nikstur ]; 21 21 22 22 nodes.machine = 23 - { pkgs, ... }: 23 + { config, ... }: 24 24 { 25 25 imports = [ common ]; 26 26 ··· 36 36 specialisation.new-generation = { 37 37 inheritParentConfig = false; 38 38 configuration = { 39 - nixpkgs.hostPlatform = { 40 - inherit (pkgs.stdenv.hostPlatform) system; 39 + nixpkgs = { 40 + inherit (config.nixpkgs) hostPlatform; 41 41 }; 42 42 imports = [ common ]; 43 43
+3 -3
nixos/tests/userborn-mutable-users.nix
··· 16 16 meta.maintainers = with lib.maintainers; [ nikstur ]; 17 17 18 18 nodes.machine = 19 - { pkgs, ... }: 19 + { config, ... }: 20 20 { 21 21 imports = [ common ]; 22 22 ··· 33 33 specialisation.new-generation = { 34 34 inheritParentConfig = false; 35 35 configuration = { 36 - nixpkgs.hostPlatform = { 37 - inherit (pkgs.stdenv.hostPlatform) system; 36 + nixpkgs = { 37 + inherit (config.nixpkgs) hostPlatform; 38 38 }; 39 39 imports = [ common ]; 40 40