diff options
Diffstat (limited to '')
| -rw-r--r-- | system/desktops/hyprland.nix | 7 | ||||
| -rw-r--r-- | system/desktops/ly.nix | 3 |
2 files changed, 6 insertions, 4 deletions
diff --git a/system/desktops/hyprland.nix b/system/desktops/hyprland.nix index eb0778e..42a45be 100644 --- a/system/desktops/hyprland.nix +++ b/system/desktops/hyprland.nix @@ -3,6 +3,7 @@ config, pkgs, lib, + system, ... }: let inherit (lib) mkIf mkDefault; @@ -13,7 +14,7 @@ in { xdg.portal = { extraPortals = [ - inputs.hyprland.packages.${pkgs.system}.xdg-desktop-portal-hyprland + inputs.hyprland.packages.${system}.xdg-desktop-portal-hyprland ]; config.hyprland = { default = ["hyprland" "gtk"]; @@ -24,8 +25,8 @@ in { programs.hyprland = { enable = true; - package = inputs.hyprland.packages.${pkgs.system}.hyprland; - portalPackage = inputs.hyprland.packages.${pkgs.system}.xdg-desktop-portal-hyprland; + package = inputs.hyprland.packages.${system}.hyprland; + portalPackage = inputs.hyprland.packages.${system}.xdg-desktop-portal-hyprland; }; }; } diff --git a/system/desktops/ly.nix b/system/desktops/ly.nix index ac53495..3ff2c1d 100644 --- a/system/desktops/ly.nix +++ b/system/desktops/ly.nix @@ -3,6 +3,7 @@ config, pkgs, inputs, + system, ... }: let inherit (lib) mkIf; @@ -12,7 +13,7 @@ in { # display manager services.displayManager.ly = { enable = true; - package = inputs.self.packages.${pkgs.system}.ly; + package = inputs.self.packages.${system}.ly; settings = let base = "0x00${config.theme.colors.base}"; |