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
]; ];
# Home Manager GTK settings
home-manager.users.henrov = {
gtk = { gtk = {
enable = true;
theme = { theme = {
name = "Catppuccin-Mocha-Standard-Blue-Dark"; name = "Catppuccin-Mocha-Standard-Blue-Dark";
variant = "dark"; variant = "dark";
}; };
iconCache = { iconTheme = {
name = "Papirus-Dark"; name = "Papirus-Dark";
}; };
}; };
};
} }