40 lines
744 B
Nix
40 lines
744 B
Nix
{ pkgs, inputs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
inputs.catppuccin.nixosModules.catppuccin
|
|
];
|
|
|
|
catppuccin = {
|
|
gtk.enable = true;
|
|
gtk.flavor = "mocha";
|
|
gtk.style = "standard";
|
|
gtk.color = "blue";
|
|
};
|
|
|
|
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);
|
|
'';
|
|
};
|
|
}
|