31 lines
650 B
Nix
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);
|
|
'';
|
|
*/
|
|
};
|
|
}
|