File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
templates/toml-devenvs/checks Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -683,13 +683,13 @@ let
683683 # add nixos system closures to checks
684684 ( withPrefix "nixos-" (
685685 lib . mapAttrs ( _ : x : x . config . system . build . toplevel ) (
686- lib . filterAttrs ( _ : x : x . pkgs . system == system ) ( inputs . self . nixosConfigurations or { } )
686+ lib . filterAttrs ( _ : x : x . pkgs . stdenv . hostPlatform . system == system ) ( inputs . self . nixosConfigurations or { } )
687687 )
688688 ) )
689689 # add darwin system closures to checks
690690 ( withPrefix "darwin-" (
691691 lib . mapAttrs ( _ : x : x . system ) (
692- lib . filterAttrs ( _ : x : x . pkgs . system == system ) ( inputs . self . darwinConfigurations or { } )
692+ lib . filterAttrs ( _ : x : x . pkgs . stdenv . hostPlatform . system == system ) ( inputs . self . darwinConfigurations or { } )
693693 )
694694 ) )
695695 # add system-manager closures to checks
Original file line number Diff line number Diff line change 11{ pkgs , inputs , ... } :
22let
33 # defined in devshells/bye.nix
4- shell = inputs . self . devShells . ${ pkgs . system } . bye ;
4+ shell = inputs . self . devShells . ${ pkgs . stdenv . hostPlatform . system } . bye ;
55in
66pkgs . stdenvNoCC . mkDerivation {
77 name = "hello-devshell" ;
Original file line number Diff line number Diff line change 11{ pkgs , inputs , ... } :
22let
33 # defined in devshell.toml at root of this flake.
4- shell = inputs . self . devShells . ${ pkgs . system } . default ;
4+ shell = inputs . self . devShells . ${ pkgs . stdenv . hostPlatform . system } . default ;
55in
66pkgs . stdenvNoCC . mkDerivation {
77 name = "default-devshell" ;
You can’t perform that action at this time.
0 commit comments