Still GTK looks

This commit is contained in:
2026-03-16 11:44:25 +00:00
parent 2c9a4a7ec2
commit 7f433f4946
5 changed files with 373 additions and 412 deletions
+368 -366
View File
File diff suppressed because it is too large Load Diff
+3 -2
View File
@@ -1141,9 +1141,10 @@ This file configures gtk
}; };
iconTheme.name = "Papirus-Dark"; iconTheme.name = "Papirus-Dark";
}; };
}#+END_SRC }
#+END_SRC
** generated/out_of_tree/machines/traveldroid/catppuccin.nix ** =generated/out_of_tree/machines/traveldroid/catppuccin.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/out_of_tree/machines/traveldroid/catppuccin.nix :noweb tangle :mkdirp yes :eval never-html #+BEGIN_SRC nix :tangle generated/out_of_tree/machines/traveldroid/catppuccin.nix :noweb tangle :mkdirp yes :eval never-html
@@ -1,14 +1,14 @@
{ pkgs, ... }: { pkgs, ... }:
{ {
gtk = { gtk = {
enable = true; enable = true;
colorScheme = "dark"; #colorScheme = "dark";
theme = { theme = {
name = "Catppuccin-GTK-Grey-Dark-Compact"; name = "Catppuccin-GTK-Grey-Dark-Compact";
package = ( package = (
pkgs.magnetic-catppuccin-gtk.override { pkgs.magnetic-catppuccin-gtk.override {
accent = [ "blue" ]; accent = [ "blue" ];
flavor = [ "mocha" ]
icon.accent = [ "blue" ]; icon.accent = [ "blue" ];
#shade = "dark"; #shade = "dark";
tweaks = [ "black" ]; tweaks = [ "black" ];
@@ -1,24 +0,0 @@
{ 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;
catppuccin.flavor = "mocha";
catppuccin.accent = "blue";
catppuccin.gtk.icon.enable = true;
catppuccin.cursors.enable = true;
}
-18
View File
@@ -1,18 +0,0 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
catppuccin.gtk.mocha.standard.blue
papirus-icon-theme
];
programs.gtk = {
enable = true;
gtk3.enable = true;
theme.name = "Catppuccin-Mocha-Standard-Blue-Dark";
theme.variant = "dark";
iconTheme.name = "Papirus-Dark";
};
# Check session.nix for variables !
}