Still GTK looks

This commit is contained in:
2026-03-16 11:32:54 +00:00
parent 49a2d35d02
commit 5e41844415
5 changed files with 446 additions and 429 deletions
@@ -0,0 +1,13 @@
{ ... }:
{
catppuccin = {
enable = true;
flavor = "mocha";
accent = "blue";
gtk = {
icon.enable = true;
};
cursors.enable = true;
};
}
@@ -1,10 +1,18 @@
{ pkgs, inputs, ... }:
{ pkgs, ... }:
{
# enable the catppuccin theme for everything with mocha + blue accents
catppuccin.enable = true;
catppuccin.flavor = "mocha";
catppuccin.accent = "blue";
#SEE SESSIONS.NIX FOR SESSION VARIABLES
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";
};
}
@@ -19,7 +19,7 @@
./session.nix
./networking.nix
./gtk.nix
./theme.nix
./catppuccin.nix
inputs.home-manager.nixosModules.home-manager
];