Still GTK looks

This commit is contained in:
2026-03-16 11:23:39 +00:00
parent b11c681e62
commit 49a2d35d02
6 changed files with 3289 additions and 27 deletions
@@ -1,14 +1,10 @@
{ pkgs, inputs, ... }:
{
environment.systemPackages = with pkgs; [
catppuccin-gtk
papirus-icon-theme
];
# enable the catppuccin theme for everything with mocha + blue accents
catppuccin.enable = true;
catppuccin.flavor = "mocha";
catppuccin.accent = "blue";
environment.sessionVariables = {
GTK_THEME = "Catppuccin-Mocha-Standard-Blue-Dark";
GTK_ICON_THEME = "Papirus-Dark";
GTK_ENABLE_DARK_MODE = "1";
};
#SEE SESSIONS.NIX FOR SESSION VARIABLES
}
@@ -0,0 +1,24 @@
{ pkgs, ...}:
{
gtk = {
enable = true;
colorScheme = "dark";
theme = {
name = "Catppuccin-GTK-Grey-Dark-Compact";
package = (pkgs.magnetic-catppuccin-gtk.override {
accent = [ "grey" ];
shade = "dark";
tweaks = [ "black" ];
size = "compact";
});
};
iconTheme.name = "Papirus-Dark";
};
catppuccin.enable = true;
catppuccin.flavor = "mocha";
catppuccin.accent = "blue";
catppuccin.gtk.icon.enable = true;
catppuccin.cursors.enable = true;
}
@@ -19,11 +19,12 @@
./session.nix
./networking.nix
./gtk.nix
./theme.nix
inputs.home-manager.nixosModules.home-manager
];
catppuccin = {
enable = true;
flavor = "mocha";
};
catppuccin = {
enable = true;
flavor = "mocha";
};
}