Still GTK looks

This commit is contained in:
2026-03-16 09:51:27 +00:00
parent ff2872953f
commit 46b33da8e0
@@ -1,17 +1,19 @@
{ pkgs, inputs, ... }: {
config,
pkgs,
inputs,
...
}:
{ {
# Install the GTK theme and icon theme imports = [
environment.systemPackages = with pkgs; [ inputs.catppuccin.nixosModules.catppuccin
#magnetic-catppuccin-gtk #inputs.catppuccin.gtk.mocha.standard #catppuccin-gtk # or inputs.catppuccin.packages.${pkgs.system}.catppuccin-gtk-mocha
inputs.catppuccin.gtk.mocha.standard
papirus-icon-theme
]; ];
# Set environment variables to enforce the theme catppuccin = {
environment.sessionVariables = { enable = true;
GTK_THEME = "Catppuccin-Mocha-Standard-Blue-Dark"; flavor = "mocha";
GTK_ICON_THEME = "Papirus-Dark"; variant = "standard";
GTK_ENABLE_DARK_MODE = "1"; gtk.enable = true;
}; };
} }