GTK GTK GTK

This commit is contained in:
2026-03-16 19:02:13 +00:00
parent 9d57603660
commit bdd0313ca5
3 changed files with 29 additions and 30 deletions
+1 -1
View File
@@ -611,7 +611,7 @@ This sets audiosystem for this machine
** =generated/out_of_tree/core/theme.nix= ** =generated/out_of_tree/core/theme.nix=
I use the [[https://catppuccin.com/][Catppuccin]] almost everywhere. The nix module integrates almost automatically everywhere (except gtk). I use the [[https://catppuccin.com/][Catppuccin]] almost everywhere. The nix module integrates almost automatically everywhere (except gtk).
You'll notice the color values in multiple places outside this as well. You'll notice the color values in multiple places outside this as well.
#+BEGIN_SRC nix :tangle generated/system/core/theme.nix :noweb tangle :mkdirp yes :eval never-html #+BEGIN_SRC nix :tangle generated/out_of_tree/core/theme.nix :noweb tangle :mkdirp yes :eval never-html
{ pkgs, ... }: { pkgs, ... }:
{ {
@@ -0,0 +1,28 @@
{ 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;
flavor = "mocha";
accent = "blue";
gtk = {
icon.enable = true;
};
cursors.enable = true;
};
}
-29
View File
@@ -26,32 +26,3 @@
cursors.enable = true; cursors.enable = true;
}; };
} }
{ 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;
flavor = "mocha";
accent = "blue";
gtk = {
icon.enable = true;
};
cursors.enable = true;
};
}