👉 Use correct pointer

This commit is contained in:
Martin Berg Alstad 2025-01-06 21:18:45 +01:00
parent 533ff49808
commit e223999ae1
Signed by: martials
GPG Key ID: A3824877B269F2E2
3 changed files with 18 additions and 21 deletions

View File

@ -1,4 +1,4 @@
# Home configurations for Hyprland. For system configs, see ./hyprland # Home configurations for Hyprland. For system configs, see ./modules/hyprland
{ {
imports = [ imports = [
./binds.nix ./binds.nix
@ -12,11 +12,7 @@
programs = { programs = {
btop.enable = true; btop.enable = true;
kitty = { kitty.settings.window_padding_width = 10;
settings = {
window_padding_width = 10;
};
};
}; };
wayland.windowManager.hyprland.enable = true; wayland.windowManager.hyprland.enable = true;

View File

@ -1,17 +1,21 @@
{ pkgs, ... }: { pkgs, ... }:
{ {
# TODO Not working correctly, see https://github.com/hyprwm/hyprcursor/issues/19 home = {
home.packages = with pkgs; [ packages = with pkgs; [
hyprcursor hyprcursor
]; ];
# TODO remove in favour of hyprland flake? file = {
home.file = {
".local/share/icons/rose-pine-hyprcursor/manifest.hl".source = ./manifest.hl; ".local/share/icons/rose-pine-hyprcursor/manifest.hl".source = ./manifest.hl;
".local/share/icons/rose-pine-hyprcursor/hyprcursors" = { ".local/share/icons/rose-pine-hyprcursor/hyprcursors" = {
source = ./hyprcursors; source = ./hyprcursors;
recursive = true; recursive = true;
}; };
}; };
};
wayland.windowManager.hyprland.settings.exec-once = [
"hyprctl setcursor $HYPRCURSOR_THEME $HYPRCURSOR_SIZE" # Set cursor
];
} }

View File

@ -186,8 +186,8 @@
}; };
misc = { misc = {
force_default_wallpaper = -1; # Set to 0 or 1 to disable the anime mascot wallpapers force_default_wallpaper = 0;
disable_hyprland_logo = false; # If true disables the random hyprland logo / anime girl background. :( disable_hyprland_logo = true;
}; };
debug.disable_logs = false; debug.disable_logs = false;
@ -196,11 +196,8 @@
input = { input = {
kb_layout = "gb,no"; kb_layout = "gb,no";
kb_options = "grp:alt_shift_toggle"; kb_options = "grp:alt_shift_toggle";
follow_mouse = 1; follow_mouse = 1;
sensitivity = 0; # -1.0 - 1.0, 0 means no modification. sensitivity = 0; # -1.0 - 1.0, 0 means no modification.
touchpad.natural_scroll = false; touchpad.natural_scroll = false;
}; };