2023-04-06 22:31:45 +02:00
|
|
|
{ pkgs, nix-colors, ... }:
|
2023-01-22 23:00:16 +01:00
|
|
|
{
|
2023-06-04 12:22:09 +02:00
|
|
|
|
|
|
|
# home.packages = with pkgs; [ libsForQt5.qtstyleplugin-kvantum ];
|
2023-04-06 22:31:45 +02:00
|
|
|
colorScheme = nix-colors.colorSchemes.dracula;
|
|
|
|
|
2023-01-22 23:00:16 +01:00
|
|
|
# theme hardcoded to dracula, too lazy to make all this base16
|
2023-01-29 14:29:34 +01:00
|
|
|
home.sessionVariables.GTK_THEME = "Dracula";
|
2023-06-04 12:22:09 +02:00
|
|
|
home.sessionVariables.QT_QPA_PLATFORMTHEME = "Dracula";
|
|
|
|
qt = {
|
|
|
|
enable = true;
|
|
|
|
style = {
|
|
|
|
name = "Dracula";
|
|
|
|
package = pkgs.dracula-theme;
|
|
|
|
};
|
|
|
|
};
|
2023-01-22 23:00:16 +01:00
|
|
|
gtk = {
|
|
|
|
enable = true;
|
|
|
|
theme = {
|
|
|
|
name = "Dracula";
|
|
|
|
package = pkgs.dracula-theme;
|
|
|
|
};
|
2023-01-26 10:38:58 +01:00
|
|
|
iconTheme = {
|
|
|
|
name = "Dracula";
|
2023-05-14 22:04:06 +02:00
|
|
|
package = pkgs.dracula-icon-theme;
|
2023-01-26 10:38:58 +01:00
|
|
|
};
|
2023-01-22 23:00:16 +01:00
|
|
|
};
|
2023-01-28 22:28:56 +01:00
|
|
|
home.pointerCursor = {
|
|
|
|
gtk.enable = true;
|
|
|
|
name = "Dracula-cursors";
|
|
|
|
package = pkgs.dracula-theme;
|
|
|
|
size = 16;
|
|
|
|
};
|
2023-01-22 23:00:16 +01:00
|
|
|
}
|