25 lines
415 B
Nix
25 lines
415 B
Nix
{ pkgs, ... }:
|
|
{
|
|
gtk = {
|
|
enable = true;
|
|
|
|
cursorTheme = {
|
|
name = "Numix-Cursor";
|
|
package = pkgs.numix-cursor-theme;
|
|
};
|
|
|
|
gtk3.extraConfig = {
|
|
Settings = ''
|
|
gtk-application-prefer-dark-theme=1
|
|
'';
|
|
};
|
|
|
|
gtk4.extraConfig = {
|
|
Settings = ''
|
|
gtk-application-prefer-dark-theme=1
|
|
'';
|
|
};
|
|
};
|
|
|
|
home.sessionVariables.GTK_THEME = "palenight";
|
|
}
|