diff options
| author | Freya Murphy <freya@freyacat.org> | 2025-11-26 16:04:31 -0500 |
|---|---|---|
| committer | Freya Murphy <freya@freyacat.org> | 2025-11-26 16:07:41 -0500 |
| commit | 5beba03bf317cc496c0f590a79930cc6419dc8ad (patch) | |
| tree | b198ba455062a461d40ba35f1a855f2fcce23e82 /system/desktops/hyprland.nix | |
| parent | update commits (diff) | |
| download | dotfiles-nix-5beba03bf317cc496c0f590a79930cc6419dc8ad.tar.gz dotfiles-nix-5beba03bf317cc496c0f590a79930cc6419dc8ad.tar.bz2 dotfiles-nix-5beba03bf317cc496c0f590a79930cc6419dc8ad.zip | |
update commits
Diffstat (limited to '')
| -rw-r--r-- | system/desktops/hyprland.nix | 7 |
1 files changed, 4 insertions, 3 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; }; }; } |