From 483c916dfafa577b6c4e5b7fff8840be23a9445e Mon Sep 17 00:00:00 2001 From: Zynh Ludwig <zynh0722@gmail.com> Date: Wed, 19 Mar 2025 20:27:42 -0700 Subject: [PATCH] snowhawk: hyprland --- hosts/snowhawk/configuration.nix | 10 ++++++++++ modules/hyprland.nix | 13 +++++++++++-- 2 files changed, 21 insertions(+), 2 deletions(-) diff --git a/hosts/snowhawk/configuration.nix b/hosts/snowhawk/configuration.nix index 9d86bde..244cc15 100644 --- a/hosts/snowhawk/configuration.nix +++ b/hosts/snowhawk/configuration.nix @@ -57,6 +57,16 @@ home-manager.sharedModules = [{ snowhawk.dunst.enable = lib.mkDefault true; }]; }; + hyprland.configuration = { + environment.etc."specialisation".text = "hyprland"; + + hardware.nvidia.open = lib.mkForce true; + + snowhawk.hyprland = { + enable = true; + nvidia = true; + }; + }; plasma.configuration = { environment.etc."specialisation".text = "plasma"; diff --git a/modules/hyprland.nix b/modules/hyprland.nix index 7bf9c75..80535b7 100644 --- a/modules/hyprland.nix +++ b/modules/hyprland.nix @@ -6,6 +6,8 @@ in { options.snowhawk.hyprland = { enable = lib.mkEnableOption "hyprland"; + + nvidia = lib.mkEnableOption "hyprland nvidia tweaks"; }; config = lib.mkIf cfg.enable (lib.mkMerge [ @@ -112,7 +114,7 @@ in ) # Anyrun - { + (lib.mkIf false { home-manager.sharedModules = [{ imports = [ inputs.anyrun.homeManagerModules.default @@ -173,6 +175,13 @@ in }; }; }]; - } + }) + + (lib.mkIf cfg.nvidia { + environment.variables = { + LIBVA_DRIVER_NAME = "nvidia"; + __GLX_VENDOR_LIBRARY_NAME = "nvidia"; + }; + }) ]); }