No gtk for darwin
This commit is contained in:
parent
a2070deda9
commit
6c32cf3b5e
3 changed files with 18 additions and 18 deletions
|
@ -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
|
||||||
|
|
|
@ -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";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -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";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue