mirror of
https://github.com/eRgo35/nix-config.git
synced 2026-02-04 12:46:11 +01:00
24 lines
361 B
Nix
24 lines
361 B
Nix
{
|
|
lib,
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
qt = {
|
|
enable = true;
|
|
platformTheme = "qtct";
|
|
style = {
|
|
name = "kvantum";
|
|
};
|
|
};
|
|
|
|
xdg.configFile = {
|
|
"Kvantum/kvantum.kvconfig".text = ''
|
|
[General]
|
|
theme=GraphiteNordDark
|
|
'';
|
|
|
|
"Kvantum/GraphiteNord".source = "${pkgs.graphite-kde-theme}/share/Kvantum/GraphiteNord";
|
|
};
|
|
}
|