Files
nixos/Droidnix/generated/out_of_tree/machines/traveldroid/gtk.nix
T
2026-03-16 08:55:10 +00:00

31 lines
650 B
Nix

{ pkgs, inputs, ... }:
{
environment.systemPackages = with pkgs; [
inputs.catppuccin.packages.${pkgs.system}.catppuccin-gtk-mocha
papirus-icon-theme
];
home-manager.users.henrov = {
gtk = {
enable = true;
theme = {
name = "Catppuccin-Mocha-Standard-Blue-Dark";
};
iconTheme = {
name = "Papirus-Dark";
};
};
home.sessionVariables = {
GTK_ENABLE_DARK_MODE = "1";
};
/*
xdg.configFile."zen-browser/user.js".text = ''
user_pref("widget.non-native-theme.enabled", false);
user_pref("ui.systemUsesDarkTheme", 1);
'';
*/
};
}