Regenerated

This commit is contained in:
2026-03-24 09:08:41 +00:00
parent 2e51f88bad
commit 1c6c6aec61
20 changed files with 17 additions and 810 deletions
+17 -29
View File
@@ -531,48 +531,36 @@ This file installs and configures fonts
** =generated/modules/traveldroid/desktop/gtk.nix=
Setting up GTK
#+BEGIN_SRC nix :tangle generated/modules/traveldroid/desktop/gtk.nix :noweb tangle :mkdirp yes :eval never-html
{ pkgs, config, lib, stylix, ... }:
{ pkgs, config, lib, ... }:
let
# Resolve the user from host configuration
username = config.defaultUser or "henrov";
in
{
#################################
# System-wide GTK packages
#################################
environment.systemPackages = with pkgs; [
gtk3
gtk4
];
#################################
# Home Manager GTK configuration
#################################
home-manager.users = lib.recursiveUpdate (config.home-manager.users or {}) {
"${username}" = {
gtk = {
enable = true;
home-manager.users."${username}" = {
gtk = {
enable = true;
# GTK theme
theme = {
name = "Catppuccin-Mocha-Standard-Blue-Dark";
package = pkgs.magnetic-catppuccin-gtk;
};
theme = {
name = "Catppuccin-Mocha-Standard-Blue-Dark";
package = pkgs.magnetic-catppuccin-gtk;
};
# Icon theme
iconTheme = {
name = "Papirus-Dark";
package = pkgs.papirus-icon-theme;
};
iconTheme = {
name = "Papirus-Dark";
package = pkgs.papirus-icon-theme;
};
# Extra GTK3 / GTK4 settings
gtk3.extraConfig = {
"gtk-application-prefer-dark-theme" = 1;
};
gtk4.extraConfig = {
"gtk-application-prefer-dark-theme" = 1;
};
gtk3.extraConfig = {
"gtk-application-prefer-dark-theme" = 1;
};
gtk4.extraConfig = {
"gtk-application-prefer-dark-theme" = 1;
};
};
};