39 lines
714 B
Nix
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);
|
|
'';
|
|
};
|
|
}
|