feat: stylix?

This commit is contained in:
Kat Inskip 2025-07-26 17:06:28 -07:00
parent 2b1fd9b99e
commit d6d4d38dcc
Signed by: kat
GPG key ID: 465E64DECEA8CF0F
33 changed files with 465 additions and 629 deletions

33
nixos/common/stylix.nix Normal file
View file

@ -0,0 +1,33 @@
{ pkgs, ... }: {
stylix = {
enable = true;
targets = {
grub.useWallpaper = false;
};
homeManagerIntegration = {
followSystem = true;
autoImport = false;
};
cursor = {
package = pkgs.bibata-cursors;
name = "Bibata-Modern-Ice";
size = 32;
};
fonts = {
sansSerif = {
name = "Jost";
package = pkgs.jost;
};
serif = {
name = "Libre Baskerville";
package = pkgs.libre-baskerville;
};
monospace = {
name = "Monaspace Krypton";
package = pkgs.monaspace;
};
};
autoEnable = true;
base16Scheme = "${pkgs.base16-schemes}/share/themes/rose-pine.yaml";
};
}