Files
nixos-config/modules/home/stylix.nix

91 lines
2.0 KiB
Nix
Raw Normal View History

2025-11-01 23:09:40 -04:00
{
inputs,
config,
2025-11-01 23:09:40 -04:00
pkgs,
...
}:
{
imports = [
inputs.stylix.homeModules.stylix
];
stylix = {
enable = true;
autoEnable = false;
polarity = "dark";
base16Scheme = "${pkgs.base16-schemes}/share/themes/catppuccin-mocha.yaml";
cursor = {
name = "Catppuccin-Mocha-Dark-Cursors";
package = pkgs.catppuccin-cursors.mochaDark;
size = 16;
};
2025-11-16 01:17:15 -05:00
fonts = {
monospace = {
name = "JetBrainsMono Nerd Font";
package = pkgs.nerd-fonts.jetbrains-mono;
2025-11-16 01:17:15 -05:00
};
};
icons = {
enable = true;
package = pkgs.morewaita-icon-theme;
light = "MoreWaita";
dark = "MoreWaita";
};
2025-11-01 23:09:40 -04:00
targets = {
foot = {
2025-11-01 23:09:40 -04:00
enable = true;
fonts.enable = true;
colors.enable = false;
inputs.enable = false;
opacity.enable = false;
2025-11-01 23:09:40 -04:00
};
};
};
gtk = {
2025-11-01 23:09:40 -04:00
enable = true;
colorScheme = "dark";
iconTheme.name = "MoreWaita";
theme = {
name = "adw-gtk3-dark";
package = pkgs.adw-gtk3;
};
2025-11-01 23:09:40 -04:00
};
2025-12-07 23:48:40 -05:00
qt = {
2025-12-07 23:48:40 -05:00
enable = true;
platformTheme.name = "qtct";
style.name = "breeze";
qt5ctSettings = {
Appearance = {
color_scheme_path = "${config.xdg.configHome}/qt5ct/colors/noctalia.conf";
custom_palette = true;
icon_theme = "MoreWaita";
standard_dialogs = "xdgdesktopportal";
style = "Breeze";
};
Fonts = {
fixed = "\"JetBrainsMono Nerd Font Mono,12\"";
general = "\"JetBrainsMono Nerd Font Propo,12\"";
};
2025-12-07 23:48:40 -05:00
};
qt6ctSettings = {
Appearance = {
color_scheme_path = "${config.xdg.configHome}/qt6ct/colors/noctalia.conf";
custom_palette = true;
icon_theme = "MoreWaita";
standard_dialogs = "xdgdesktopportal";
style = "Breeze";
};
Fonts = {
fixed = "\"JetBrainsMono Nerd Font Mono,12\"";
general = "\"JetBrainsMono Nerd Font Propo,12\"";
};
};
};
home.sessionVariables = {
QS_ICON_THEME = "MoreWaita";
2025-12-07 23:48:40 -05:00
};
2025-11-01 23:09:40 -04:00
}