No gtk for darwin

This commit is contained in:
Daniel Flanagan 2023-10-06 01:30:15 -05:00
parent a2070deda9
commit 6c32cf3b5e
Signed by: lytedev
GPG key ID: 5B2020A0F9921EF4
3 changed files with 18 additions and 18 deletions

View file

@ -46,6 +46,9 @@
size = 12; size = 12;
}; };
in { in {
colors = colors;
font = font;
# TODO: nix-color integration? # TODO: nix-color integration?
# Your custom packages # Your custom packages
# Acessible through 'nix build', 'nix shell', etc # Acessible through 'nix build', 'nix shell', etc

View file

@ -1,22 +1,5 @@
{ {outputs, ...}: {
outputs,
pkgs,
...
}: {
imports = with outputs.homeManagerModules; [ imports = with outputs.homeManagerModules; [
kitty kitty
]; ];
gtk = {
enable = true;
theme = {
name = "Catppuccin-Mocha-Compact-Sapphire-dark";
package = pkgs.catppuccin-gtk.override {
accents = ["sapphire"];
size = "compact";
tweaks = ["rimless" "black"];
variant = "mocha";
};
};
};
} }

View file

@ -1,4 +1,5 @@
{ {
pkgs,
outputs, outputs,
# font, # font,
... ...
@ -7,4 +8,17 @@
desktop desktop
firefox firefox
]; ];
gtk = {
enable = true;
theme = {
name = "Catppuccin-Mocha-Compact-Sapphire-dark";
package = pkgs.catppuccin-gtk.override {
accents = ["sapphire"];
size = "compact";
tweaks = ["rimless" "black"];
variant = "mocha";
};
};
};
} }