36 lines
752 B
Nix
36 lines
752 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
# System packages (NixOS)
|
|
environment.systemPackages = with pkgs; [
|
|
catppuccin.gtk.mocha.standard.blue
|
|
papirus-icon-theme
|
|
];
|
|
|
|
# Home Manager GTK settings
|
|
home-manager.users.henrov = {
|
|
gtk = {
|
|
enable = true;
|
|
theme = {
|
|
name = "Catppuccin-Mocha-Standard-Blue-Dark";
|
|
};
|
|
iconTheme = {
|
|
name = "Papirus-Dark";
|
|
};
|
|
};
|
|
|
|
# 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);
|
|
'';
|
|
};
|
|
*/
|
|
}
|