Skip to content

Commit

Permalink
tweak(stylix): enable Hyprland module
Browse files Browse the repository at this point in the history
Also adds mkForce to some values to fix conflicts
with Stylix.
  • Loading branch information
gekoke committed Dec 29, 2023
1 parent 1176a3a commit 4b8b4e9
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 11 deletions.
12 changes: 6 additions & 6 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions modules/nixos/desktop/addons/cursor/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ in

config = mkIf cfg.enable {
elementary.home.extraOptions.home.pointerCursor = {
package = pkgs.bibata-cursors;
name = "Bibata-Modern-Ice";
size = 22;
package = lib.mkForce pkgs.bibata-cursors;
name = lib.mkForce "Bibata-Modern-Ice";
size = lib.mkForce 22;
gtk = enabled;
x11 = enabled;
};
Expand Down
2 changes: 0 additions & 2 deletions modules/nixos/stylix/stylesheets/main/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ with lib.elementary;
elementary.stylix.extraOptions.targets.grub = disabled;
elementary.stylix.extraHomeManagerOptions.targets = {
emacs = disabled;
hyprland = disabled;
};

elementary.stylix.extraOptions = {
Expand Down Expand Up @@ -101,7 +100,6 @@ with lib.elementary;
border_size = 2
col.active_border = rgb(f5bde6) rgb(c6a0f6) rgb(8bd5ca) rgb(91d7e3) rgb(7dc4e4) rgb(8aadf4) rgb(b7bdf8)
col.inactive_border = rgb(494d64)
}
decoration {
Expand Down

0 comments on commit 4b8b4e9

Please sign in to comment.