stylix not in hm

This commit is contained in:
twoneis 2024-03-20 12:06:10 +01:00
parent a4c4fc6809
commit 510f7dea7f
4 changed files with 2 additions and 4 deletions

27
modules/system/stylix.nix Normal file
View file

@ -0,0 +1,27 @@
{ pkgs, ... }: {
stylix = {
image = ../../wallpaper/wallpaper.png;
base16Scheme = "${pkgs.base16-schemes}/share/themes/rose-pine.yaml";
fonts = {
serif = {
package = pkgs.alegreya;
name = "Alegreya";
};
sansSerif = {
package = pkgs.alegreya;
name = "Alegreya Sans";
};
monospace = {
package = pkgs.fira-code;
name = "Fira Code";
};
emoji = {
package = pkgs.noto-fonts-emoji;
name = "Noto Color Emoji";
};
};
cursor = {
size = 24;
};
};
}