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

44 lines
867 B
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 = "FiraCode Nerd Font";
package = pkgs.nerd-fonts.fira-code;
};
};
2025-11-01 23:09:40 -04:00
targets = {
2025-11-16 01:17:15 -05:00
ghostty.enable = true;
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-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
};
}