1

System: Replace usage of "system" alias with "pkgs.stdenv.hostPlatform.system"

This commit is contained in:
2025-11-24 15:57:10 +01:00
parent a9c55ead9b
commit f28fdfabca
5 changed files with 32 additions and 30 deletions

View File

@ -346,8 +346,8 @@ with mylib.networking; {
hyprland = {
enable = !headless;
package = inputs.hyprland.packages.${system}.hyprland;
portalPackage = inputs.hyprland.packages.${system}.xdg-desktop-portal-hyprland;
package = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.hyprland;
portalPackage = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.xdg-desktop-portal-hyprland;
xwayland.enable = true;
withUWSM = true;
@ -471,7 +471,7 @@ with mylib.networking; {
script = ''
set -eu
echo "Start refreshing nps cache..."
${inputs.nps.packages.${system}.default}/bin/nps -dddd -e -r
${inputs.nps.packages.${pkgs.stdenv.hostPlatform.system}.default}/bin/nps -dddd -e -r
echo "... finished nps cache with exit code $?."
'';
};