👉 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 = [
./binds.nix
@ -12,11 +12,7 @@
programs = {
btop.enable = true;
kitty = {
settings = {
window_padding_width = 10;
};
};
kitty.settings.window_padding_width = 10;
};
wayland.windowManager.hyprland.enable = true;

View File

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

View File

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