This commit is contained in:
Kopatz
2024-04-17 18:40:50 +02:00
parent 2961c26843
commit 3f7ae95c21
4 changed files with 29 additions and 21 deletions

View File

@@ -1,14 +0,0 @@
{ config, pkgs, inputs, ...}:
{
gtk = {
enable = true;
theme = {
name = "Tokyonight-Dark-BL";
package = pkgs.tokyo-night-gtk;
};
cursorTheme = {
package = pkgs.libsForQt5.breeze-gtk;
name = "Breeze-gtk";
};
};
}

22
home-manager/theme.nix Normal file
View File

@@ -0,0 +1,22 @@
{ config, pkgs, inputs, ...}:
{
home = {
pointerCursor = {
size = 24;
gtk.enable = true;
name = "breeze_cursors";
package = pkgs.libsForQt5.breeze-gtk; # or -icons?
};
};
gtk = {
enable = true;
theme = {
name = "Tokyonight-Dark-BL";
package = pkgs.tokyo-night-gtk;
};
};
qt = {
enable = true;
platformTheme = "kde";
};
}