diff --git a/nix/configurations/vm.nix b/nix/configurations/vm.nix index 4444f7d1..99426b95 100644 --- a/nix/configurations/vm.nix +++ b/nix/configurations/vm.nix @@ -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; };