mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 04:19:19 -08:00
37 lines
804 B
Nix
37 lines
804 B
Nix
{ pkgs, ... }: {
|
|
home.packages = [
|
|
pkgs.adwaita-icon-theme
|
|
];
|
|
stylix = {
|
|
enable = true;
|
|
cursor = {
|
|
package = pkgs.bibata-cursors;
|
|
name = "Bibata-Modern-Ice";
|
|
size = 32;
|
|
};
|
|
image = ./stylix.png;
|
|
icons = {
|
|
enable = true;
|
|
light = "MoreWaita";
|
|
dark = "MoreWaita";
|
|
package = pkgs.morewaita-icon-theme;
|
|
};
|
|
fonts = {
|
|
sansSerif = {
|
|
name = "Jost";
|
|
package = pkgs.jost;
|
|
};
|
|
serif = {
|
|
name = "Libre Baskerville";
|
|
package = pkgs.libre-baskerville;
|
|
};
|
|
monospace = {
|
|
name = "Monaspace Krypton";
|
|
package = pkgs.monaspace;
|
|
};
|
|
};
|
|
autoEnable = true;
|
|
polarity = "light";
|
|
base16Scheme = "${pkgs.base16-schemes}/share/themes/sakura.yaml";
|
|
};
|
|
}
|