Updated from pkgs.system to pkgs.stdenv.hostPlatform.system

This commit is contained in:
2025-11-08 12:12:44 -05:00
parent 636c8d4d0d
commit a97d49f8a7
2 changed files with 5 additions and 4 deletions

View File

@@ -9,7 +9,7 @@
]; ];
environment.systemPackages = [ environment.systemPackages = [
inputs.agenix.packages.${pkgs.system}.default # CLI Tool inputs.agenix.packages.${pkgs.stdenv.hostPlatform.system}.default # CLI Tool
]; ];
age.secrets = { age.secrets = {

View File

@@ -4,7 +4,7 @@
... ...
}: }:
let let
sddm-theme = inputs.silentSDDM.packages.${pkgs.system}.default; sddm-theme = inputs.silentSDDM.packages.${pkgs.stdenv.hostPlatform.system}.default;
in in
{ {
imports = [ imports = [
@@ -14,8 +14,9 @@ in
programs = { programs = {
hyprland = { hyprland = {
enable = true; enable = true;
package = inputs.hyprland.packages.${pkgs.system}.hyprland; package = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.hyprland;
portalPackage = inputs.hyprland.packages.${pkgs.system}.xdg-desktop-portal-hyprland; portalPackage =
inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.xdg-desktop-portal-hyprland;
}; };
mango.enable = true; mango.enable = true;
}; };