bettered up the pww package

This commit is contained in:
Rouven Seifert 2023-06-05 12:31:07 +02:00
parent 8196d6e741
commit cf7f8dcda7
Signed by: rouven.seifert
GPG key ID: B95E8FE6B11C4D09
6 changed files with 35 additions and 22 deletions

View file

@ -1,12 +1,11 @@
{ pkgs, nix-colors, ... }:
{
# home.packages = with pkgs; [ libsForQt5.qtstyleplugin-kvantum ];
home.packages = with pkgs; [ libsForQt5.qtstyleplugin-kvantum ];
colorScheme = nix-colors.colorSchemes.dracula;
# theme hardcoded to dracula, too lazy to make all this base16
home.sessionVariables.GTK_THEME = "Dracula";
home.sessionVariables.QT_QPA_PLATFORMTHEME = "Dracula";
qt = {
enable = true;
style = {
@ -31,4 +30,9 @@
package = pkgs.dracula-theme;
size = 16;
};
xdg.configFile = {
"Kvantum/Dracula/Dracula.kvconfig".source = "${pkgs.dracula-theme}/share/Kvantum/Dracula/Dracula.kvconfig";
"Kvantum/Dracula/Dracula.svg".source = "${pkgs.dracula-theme}/share/Kvantum/Dracula/Dracula.svg";
"Kvantum/kvantum.kvconfig".text = "[General]\ntheme=Dracula";
};
}