diff options
Diffstat (limited to '')
| -rw-r--r-- | home/desktops/hyprland/default.nix | 5 | ||||
| -rw-r--r-- | home/desktops/hyprland/plugins.nix | 5 |
2 files changed, 6 insertions, 4 deletions
diff --git a/home/desktops/hyprland/default.nix b/home/desktops/hyprland/default.nix index 53a1d2a..c584913 100644 --- a/home/desktops/hyprland/default.nix +++ b/home/desktops/hyprland/default.nix @@ -3,6 +3,7 @@ config, pkgs, lib, + system, ... }: let inherit (lib) mkIf mkDefault; @@ -19,12 +20,12 @@ in { config = mkIf cfg.enable { home.packages = [ - inputs.rose-pine-hyprcursor.packages.${pkgs.system}.default + inputs.rose-pine-hyprcursor.packages.${system}.default ]; wayland.windowManager.hyprland = { enable = true; - package = inputs.hyprland.packages.${pkgs.system}.hyprland; + package = inputs.hyprland.packages.${system}.hyprland; xwayland.enable = true; systemd.enable = true; diff --git a/home/desktops/hyprland/plugins.nix b/home/desktops/hyprland/plugins.nix index 6d43693..f4b76f2 100644 --- a/home/desktops/hyprland/plugins.nix +++ b/home/desktops/hyprland/plugins.nix @@ -2,12 +2,13 @@ inputs, config, pkgs, + system, ... }: { wayland.windowManager.hyprland = { plugins = [ - #inputs.hyprland-plugins.packages.${pkgs.system}.hyprexpo - inputs.hy3.packages.${pkgs.system}.hy3 + #inputs.hyprland-plugins.packages.${system}.hyprexpo + inputs.hy3.packages.${system}.hy3 ]; settings.plugin = { |