summaryrefslogtreecommitdiff
path: root/home-modules/theming.nix
diff options
context:
space:
mode:
authorJakub Stachurski <j.stachurski@student.utwente.nl>2025-08-17 11:25:33 +0200
committerJakub Stachurski <j.stachurski@student.utwente.nl>2025-08-17 11:25:33 +0200
commit1be972048dd58218cd689ecb5cac562eb398b751 (patch)
tree203f19ee01ad5fe28f2868e8c1451f9538e4ab12 /home-modules/theming.nix
parent3cd59d4670711e34a50adea912c3b0894883e490 (diff)
refreshed config
Diffstat (limited to 'home-modules/theming.nix')
-rw-r--r--home-modules/theming.nix45
1 files changed, 45 insertions, 0 deletions
diff --git a/home-modules/theming.nix b/home-modules/theming.nix
new file mode 100644
index 0000000..291dadc
--- /dev/null
+++ b/home-modules/theming.nix
@@ -0,0 +1,45 @@
+{ hostconfig, pkgs, lib,... }:
+let
+ catppuccin_gtk = pkgs.catppuccin-gtk.override {
+ accents = ["pink"];
+ size = "compact";
+ tweaks = ["black"];
+ variant = "mocha";
+ };
+in
+{
+ config = lib.mkIf hostconfig.addons.desktop.enable {
+ #Gtk Theming
+ gtk = {
+ enable=true;
+ theme = {
+ package= catppuccin_gtk;
+ name="catppuccin-mocha-pink-compact+black";
+ };
+ iconTheme = {
+ package = pkgs.catppuccin-papirus-folders;
+ name = "Papirus-Dark";
+ };
+ };
+
+
+ home.pointerCursor = {
+ gtk.enable = true;
+ package = pkgs.catppuccin-cursors.mochaDark;
+ name = "catppuccin-mocha-dark-cursors";
+ size = 32;
+ };
+
+ qt = {
+ enable = true;
+ platformTheme.name = "qtct";
+ style.name="kvantum";
+ };
+
+ xdg.configFile."Kvantum/kvantum.kvconfig".source = (pkgs.formats.ini {}).generate "kvantum.kvconfig" {
+ General.theme = "Catppuccin-Mocha-Pink";
+ };
+ };
+}
+
+