calcite: switch to greetd and gtklock

This commit is contained in:
xinyangli 2024-11-13 21:24:26 +08:00
parent f87136fc94
commit d4aaa6c4a3
Signed by: xin
SSH key fingerprint: SHA256:UU5pRTl7NiLFJbWJZa+snLylZSXIz5rgHmwjzv8v4oE
9 changed files with 261 additions and 48 deletions

View file

@ -0,0 +1,19 @@
{ config, pkgs, ... }:
{
config = {
home.pointerCursor = {
name = "Bibata-Modern-Ice";
size = 24;
package = pkgs.bibata-cursors;
gtk.enable = true;
};
gtk = {
enable = true;
theme = {
name = "Catppuccin-GTK-Dark";
package = pkgs.magnetic-catppuccin-gtk;
};
gtk2.configLocation = "${config.xdg.configHome}/gtk-2.0/gtkrc";
};
};
}