From b36dbf15c084a0ed718256974efb6e058b05b939 Mon Sep 17 00:00:00 2001 From: caem Date: Sun, 4 Aug 2024 19:47:18 +0200 Subject: [PATCH] Revert "hyprland: Switch back nixpkgs release" This reverts commit 9226d8a7e63e104232fe37d6aa15012ff390b99e. --- home/packages/hyprland.nix | 8 +++++++- modules/desktop/environments/hyprland.nix | 3 ++- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/home/packages/hyprland.nix b/home/packages/hyprland.nix index 3f85aee..990100a 100644 --- a/home/packages/hyprland.nix +++ b/home/packages/hyprland.nix @@ -1,4 +1,4 @@ -{ ... }: +{ inputs, pkgs, ... }: { services.hyprpaper = { @@ -17,6 +17,7 @@ wayland.windowManager.hyprland = { enable = true; + package = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.hyprland; systemd = { enable = true; variables = [ "--all" ]; @@ -29,6 +30,11 @@ monitor = "DP-1,1920x1080@144,auto,1"; + # Freezes Firefox, enable later when useable. + # experimental = { + # explicit_sync = true; + # }; + cursor = { no_hardware_cursors = true; }; diff --git a/modules/desktop/environments/hyprland.nix b/modules/desktop/environments/hyprland.nix index e08b254..96230c5 100644 --- a/modules/desktop/environments/hyprland.nix +++ b/modules/desktop/environments/hyprland.nix @@ -1,4 +1,4 @@ -{ pkgs, ...}: +{ inputs, pkgs, ...}: { imports = [ @@ -27,6 +27,7 @@ programs.hyprland = { enable = true; + package = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.hyprland; }; services.gnome.gnome-keyring.enable = true;