diff options
Diffstat (limited to 'home')
| -rw-r--r-- | home/ebisu/fortune/desktop/hyprland/default.nix | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/home/ebisu/fortune/desktop/hyprland/default.nix b/home/ebisu/fortune/desktop/hyprland/default.nix index b3d92be..424c6e9 100644 --- a/home/ebisu/fortune/desktop/hyprland/default.nix +++ b/home/ebisu/fortune/desktop/hyprland/default.nix @@ -7,9 +7,9 @@ # ./hyprpaper.nix ]; - wayland.windowManager.hyprland = { + wayland.windowManager.hyprland = with inputs; { enable = true; - package = inputs.hyprland.packages.${pkgs.system}.hyprland; + package = hyprland.packages.${pkgs.system}.hyprland; xwayland.enable = true; systemd = { @@ -19,8 +19,8 @@ }; plugins = [ - # inputs.Hyprspace.packages.${pkgs.system}.Hyprspace - inputs.hyprland-plugins.packages.${pkgs.stdenv.hostPlatform.system}.hyprtrails + # Hyprspace.packages.${pkgs.system}.Hyprspace + hyprland-plugins.packages.${pkgs.system}.hyprtrails ]; }; |