Working on GTK

This commit is contained in:
2026-03-16 08:49:26 +00:00
parent 27b6db974f
commit 9c50a55b0a
@@ -1,18 +1,23 @@
{ pkgs, ... }: { pkgs, ... }:
{ {
# System packages (NixOS)
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
catppuccin.gtk.mocha.standard.blue catppuccin.gtk.mocha.standard.blue
papirus-icon-theme papirus-icon-theme
]; ];
gtk = { # Home Manager GTK settings
theme = { home-manager.users.henrov = {
name = "Catppuccin-Mocha-Standard-Blue-Dark"; gtk = {
variant = "dark"; enable = true;
}; theme = {
iconCache = { name = "Catppuccin-Mocha-Standard-Blue-Dark";
name = "Papirus-Dark"; variant = "dark";
};
iconTheme = {
name = "Papirus-Dark";
};
}; };
}; };
} }