try gdm and bibata

This commit is contained in:
Primrose 2025-05-28 21:38:31 +02:00
parent ee03d251de
commit 69bf6c3b62
Signed by: primrose
GPG key ID: 4E887A4CA9714ADA

View file

@ -43,18 +43,27 @@ in
autoRepeatInterval = 40;
};
services.xserver.displayManager.lightdm = {
# services.xserver.displayManager.lightdm = {
# enable = true;
# # This seems to effect the root window
# # However adding this doesn't make the cursor work
# greeters.gtk.cursorTheme = {
# name = "Posy_Cursor_Black";
# package = pkgs.posy-cursors;
# size = 72;
# };
# };
# Test with GDM because it doesn't set the cursor, the problem is more apparent
services.xserver.displayManager.gdm = {
enable = true;
# This seems to effect the root window
# However adding this doesn't make the cursor work
greeters.gtk.cursorTheme = {
name = "Posy_Cursor_Black";
package = pkgs.posy-cursors;
size = 72;
};
};
hm = {nixosConfig, ...}: {
hm = {
nixosConfig,
config,
...
}: {
home.packages = [pkgs.xterm pkgs.dconf];
programs.alacritty.enable = true;
programs.kitty.enable = true;
@ -74,8 +83,10 @@ in
home.pointerCursor = {
x11.enable = true;
gtk.enable = true;
name = "Posy_Cursor_Black";
package = pkgs.posy-cursors;
# name = "Posy_Cursor_Black";
# package = pkgs.posy-cursors;
name = "Bibata-Original-Ice";
package = pkgs.bibata-cursors;
size = 72;
};