Working on GTK

This commit is contained in:
2026-03-16 08:53:04 +00:00
parent cc97f84ce2
commit 963a46fde9
@@ -1,9 +1,9 @@
{ pkgs, ... }:
{ pkgs, inputs, ... }:
{
# System packages (NixOS)
environment.systemPackages = with pkgs; [
catppuccin.gtk.mocha.standard.blue
inputs.catppuccin.gtk.mocha.standard.blue # Use the flake input
papirus-icon-theme
];
@@ -24,13 +24,10 @@
GTK_ENABLE_DARK_MODE = "1";
};
/*
# Optional: Force dark mode for Zen Browser
xdg.configFile."zen-browser/user.js".text = ''
user_pref("widget.non-native-theme.enabled", false);
user_pref("ui.systemUsesDarkTheme", 1);
'';
*/
# Optional: Force dark mode for Zen Browser
xdg.configFile."zen-browser/user.js".text = ''
user_pref("widget.non-native-theme.enabled", false);
user_pref("ui.systemUsesDarkTheme", 1);
'';
};
}