nixos_config/hosts/common/stylix.nix

45 lines
867 B
Nix
Raw Normal View History

2026-01-07 19:19:47 +01:00
{ config, pkgs, lib, ... }:
{
stylix = {
enable = true;
2026-01-07 22:56:05 +01:00
autoEnable = true;
enableReleaseChecks = false;
2026-01-07 19:19:47 +01:00
2026-01-07 22:56:05 +01:00
base16Scheme = "${pkgs.base16-schemes}/share/themes/selenized-black.yaml";
2026-01-07 19:19:47 +01:00
polarity = "dark";
fonts = {
monospace = {
2026-01-07 22:56:05 +01:00
package = pkgs.inconsolata;
name = "Inconsolata";
2026-01-07 19:19:47 +01:00
};
sansSerif = {
package = pkgs.inter;
name = "Inter";
};
serif = {
package = pkgs.source-serif;
name = "Source Serif 4";
};
emoji = {
2026-01-07 22:56:05 +01:00
package = pkgs.noto-fonts-color-emoji;
name = "noto-fonts-color-emoji";
2026-01-07 19:19:47 +01:00
};
sizes = {
2026-01-07 22:56:05 +01:00
applications = 14;
terminal = 14;
desktop = 14;
popups = 14;
2026-01-07 19:19:47 +01:00
};
};
cursor = {
package = pkgs.bibata-cursors;
name = "Bibata-Modern-Ice";
2026-01-07 22:56:05 +01:00
size = 20;
2026-01-07 19:19:47 +01:00
};
};
}