🖌️ Catppuccin on GTK apps

This commit is contained in:
2025-01-11 12:46:23 +01:00
parent d192efdf0f
commit 99c1d855ab
5 changed files with 39 additions and 14 deletions

View File

@ -16,6 +16,7 @@ in
./default-applications.nix
./fish.nix
./git.nix
./gtk.nix
./mpv.nix
./nixvim
./rofi
@ -25,8 +26,6 @@ in
./yazi
];
# Home Manager needs a bit of information about you and the
# paths it should manage.
home = {
username = username;
homeDirectory = dir.home;

13
home-manager/gtk.nix Normal file
View File

@ -0,0 +1,13 @@
let
theme = import ../theme.nix;
in
{
gtk.enable = true;
catppuccin.gtk = {
enable = true;
flavor = theme.flavor;
icon.enable = true;
};
stylix.targets.gtk.enable = false;
}