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

39 lines
714 B
Nix

{ pkgs, inputs, ... }:
{
imports = [
inputs.catppuccin.nixosModules.catppuccin
];
catppuccin.gtk = {
enable = true;
flavor = "mocha";
variant = "standard";
};
environment.systemPackages = with pkgs; [
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);
'';
};
}