Several hyprland updates:

plugins, new cursor, light/dark themes, new app launcher, ...
This commit is contained in:
Miguel Palhas
2026-02-16 17:33:40 +00:00
parent 48225afa6d
commit e8086e8528
48 changed files with 1436 additions and 290 deletions
+7 -5
View File
@@ -1,14 +1,16 @@
{ pkgs, inputs, ... }:
let
nordzy-cursors = pkgs.callPackage ../../../../pkgs/nordzy-cursors/package.nix { };
in
{
home.packages = with pkgs; [
rose-pine-cursor
inputs.rose-pine-hyprcursor.packages.${pkgs.stdenv.hostPlatform.system}.default
home.packages = [
nordzy-cursors
];
home.sessionVariables = {
HYPRCURSOR_THEME = "BreezeX-RosePine-Linux";
HYPRCURSOR_THEME = "Nordzy-cursors"; # Dark variant (default)
HYPRCURSOR_SIZE = 32;
XCURSOR_THEME = "BreezeX-RosePine-Linux";
XCURSOR_THEME = "Nordzy-cursors";
XCURSOR_SIZE = 32;
};