Working on GTK
This commit is contained in:
@@ -1,13 +1,11 @@
|
||||
{ pkgs, inputs, ... }:
|
||||
|
||||
{
|
||||
# System packages (NixOS)
|
||||
environment.systemPackages = with pkgs; [
|
||||
inputs.catppuccin.gtk.mocha.standard.blue # Use the flake input
|
||||
inputs.catppuccin.packages.${pkgs.system}.catppuccin-gtk-mocha
|
||||
papirus-icon-theme
|
||||
];
|
||||
|
||||
# Home Manager GTK settings
|
||||
home-manager.users.henrov = {
|
||||
gtk = {
|
||||
enable = true;
|
||||
@@ -19,15 +17,14 @@
|
||||
};
|
||||
};
|
||||
|
||||
# Force dark mode via environment variable
|
||||
home.sessionVariables = {
|
||||
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);
|
||||
'';
|
||||
/*
|
||||
xdg.configFile."zen-browser/user.js".text = ''
|
||||
user_pref("widget.non-native-theme.enabled", false);
|
||||
user_pref("ui.systemUsesDarkTheme", 1);
|
||||
'';
|
||||
*/
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user