stdenv.hostPlatform.system -> stdenv.system

This commit is contained in:
Gerg-L 2024-06-26 19:26:18 -04:00
parent 7ca2ee6986
commit 9d60499990
Signed by: gerg-l
SSH key fingerprint: SHA256:FPYDHIkvMocr4wdmZXpgpJjsb2Tw6rASs2ISPbOb0KI
2 changed files with 2 additions and 2 deletions

View file

@ -222,7 +222,7 @@ rec {
callPackage = lib.callPackageWith ( callPackage = lib.callPackageWith (
pkgs pkgs
// { // {
inputs = constructInputs' pkgs.stdenv.hostPlatform.system inputs; inputs = constructInputs' pkgs.system inputs;
# maybe add self? # maybe add self?
# inherit self; # inherit self;
# npins sources if i need them # npins sources if i need them

View file

@ -17,7 +17,7 @@ lib.gerg-utils (s: unstable.legacyPackages.${s}) {
"media-laptop" "media-laptop"
]; ];
formatter = pkgs: inputs.self.packages.${pkgs.stdenv.hostPlatform.system}.lint; formatter = pkgs: inputs.self.packages.${pkgs.stdenv.system}.lint;
devShells = pkgs: { default = pkgs.mkShell { packages = [ pkgs.sops ]; }; }; devShells = pkgs: { default = pkgs.mkShell { packages = [ pkgs.sops ]; }; };