diff --git a/Droidnix/generated/out_of_tree/machines/traveldroid/gtk.nix b/Droidnix/generated/out_of_tree/machines/traveldroid/gtk.nix index 49e28974c..00397ea2c 100644 --- a/Droidnix/generated/out_of_tree/machines/traveldroid/gtk.nix +++ b/Droidnix/generated/out_of_tree/machines/traveldroid/gtk.nix @@ -1,24 +1,16 @@ { pkgs, ... }: { - # Install the Catppuccin GTK theme system-wide + # Install the GTK theme and icon theme environment.systemPackages = with pkgs; [ - catppuccin-gtk + catppuccin-gtk # or inputs.catppuccin.packages.${pkgs.system}.catppuccin-gtk-mocha papirus-icon-theme ]; - # Set the GTK theme and icon theme system-wide - gtk = { - theme = { - name = "Catppuccin-Mocha-Standard-Blue-Dark"; - }; - iconTheme = { - name = "Papirus-Dark"; - }; - }; - - # Force dark mode for all GTK applications + # Set environment variables to enforce the theme environment.sessionVariables = { + GTK_THEME = "Catppuccin-Mocha-Standard-Blue-Dark"; + GTK_ICON_THEME = "Papirus-Dark"; GTK_ENABLE_DARK_MODE = "1"; }; }