This commit is contained in:
Sakooooo 2023-07-17 20:30:58 +03:00
parent 1943dda433
commit 8fc758ddf7
Signed by: sako
GPG key ID: 3FD715D87D7725E0

View file

@ -23,18 +23,22 @@ in
lightdm = { lightdm = {
enable = true; enable = true;
background = ../../../config/bspwm/background.png; background = ../../../config/bspwm/background.png;
greeters.mini = { greeters.gtk = {
enable = true; enable = true;
user = "sako"; theme = {
extraConfig = '' package = pkgs.vimix-gtk-themes;
[greeter] name = "vimix-dark-ruby";
show-password-label = true };
password-label-text = whats the magic word? iconTheme = {
[greeter-theme] package = pkgs.vimix-icon-theme;
password-border-color = "#08090e" name = "Vimix Ruby dark";
password-border-width = 1px };
''; cursorTheme = {
package = pkgs.catppuccin-cursors.mochaDark;
name = "Catppuccin-Mocha-Dark";
};
}; };
}; };
}; };
libinput = { libinput = {
@ -69,7 +73,10 @@ in
home-manager.users.sako = { pkgs , ...}: { home-manager.users.sako = { pkgs , ...}: {
home.pointerCursor = { home.pointerCursor = {
name = "Catppuccin-Mocha-Dark"; name = "Catppuccin-Mocha-Dark";
x11.enable = true; size = 16;
x11 = {
enable = true;
};
gtk.enable = true; gtk.enable = true;
package = pkgs.catppuccin-cursors.mochaDark; package = pkgs.catppuccin-cursors.mochaDark;
}; };