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

55 lines
1.1 KiB
Nix
Raw Normal View History

2025-11-01 23:09:40 -04:00
{
inputs,
pkgs,
...
}:
{
imports = [
inputs.stylix.homeModules.stylix
];
stylix = {
enable = true;
autoEnable = false;
polarity = "dark";
base16Scheme = "${pkgs.base16-schemes}/share/themes/catppuccin-mocha.yaml";
2025-11-16 01:17:15 -05:00
fonts = {
monospace = {
name = "JetBrainsMono Nerd Font"; # "FiraCode Nerd Font";
package = pkgs.nerd-fonts.jetbrains-mono; # pkgs.nerd-fonts.fira-code;
2025-11-16 01:17:15 -05:00
};
};
2025-11-01 23:09:40 -04:00
targets = {
2025-11-16 01:17:15 -05:00
ghostty.enable = true;
2025-12-07 23:48:40 -05:00
gtk.enable = true;
2025-11-16 01:17:15 -05:00
firefox = {
2025-11-01 23:09:40 -04:00
enable = true;
2025-11-16 01:17:15 -05:00
profileNames = [ "eclypse" ];
colorTheme.enable = true;
firefoxGnomeTheme.enable = true;
2025-11-01 23:09:40 -04:00
};
2025-12-07 23:52:36 -05:00
foot.enable = true;
2025-11-16 01:17:15 -05:00
lazygit.enable = true;
2025-11-22 18:47:06 -05:00
starship.enable = true;
2025-11-16 01:17:15 -05:00
yazi.enable = true;
2025-11-01 23:09:40 -04:00
};
};
home.pointerCursor = {
enable = true;
2025-11-16 01:17:15 -05:00
gtk.enable = true;
name = "Catppuccin-Mocha-Dark-Cursors";
package = pkgs.catppuccin-cursors.mochaDark;
size = 16;
2025-11-01 23:09:40 -04:00
};
2025-12-07 23:48:40 -05:00
gtk = {
enable = true;
colorScheme = "dark";
iconTheme = {
name = "Adwaita";
package = pkgs.adwaita-icon-theme;
};
};
2025-11-01 23:09:40 -04:00
}