From 96849b375642864800dad420e81512c571d18390 Mon Sep 17 00:00:00 2001 From: "info@data-pro.nu" Date: Mon, 16 Mar 2026 09:26:18 +0000 Subject: [PATCH] Trying to install mocha instead of frappe --- Droidnix/README.org | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/Droidnix/README.org b/Droidnix/README.org index b1970dc37..24b6bebbb 100644 --- a/Droidnix/README.org +++ b/Droidnix/README.org @@ -1118,20 +1118,18 @@ This file configures gtk { pkgs, ... }: { + # Install the GTK theme and icon theme environment.systemPackages = with pkgs; [ - catppuccin.gtk.mocha.standard.blue + catppuccin-gtk-mocha # or inputs.catppuccin.packages.${pkgs.system}.catppuccin-gtk-mocha papirus-icon-theme ]; - programs.gtk = { - enable = true; - gtk3.enable = true; - theme.name = "Catppuccin-Mocha-Standard-Blue-Dark"; - theme.variant = "dark"; - iconTheme.name = "Papirus-Dark"; + # 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"; }; - - # Check session.nix for variables ! } #+END_SRC