1
0
mirror of https://github.com/kmein/niveum synced 2026-03-21 20:31:07 +01:00

feat: stylix is my new best friend

This commit is contained in:
2023-07-26 07:38:52 +02:00
parent 92bf5ab0ee
commit a8940bf667
27 changed files with 401 additions and 944 deletions

37
configs/stylix.nix Normal file
View File

@@ -0,0 +1,37 @@
{
pkgs,
inputs,
...
}: {
# https://danth.github.io/stylix/tricks.html
stylix.image = inputs.wallpapers.outPath + "/vaporwave/1432599578099.png";
stylix.polarity = "either";
stylix.fonts = {
serif = {
package = pkgs.noto-fonts;
name = "Noto Serif";
};
sansSerif = {
package = pkgs.noto-fonts;
name = "Noto Sans";
};
monospace = {
package = pkgs.noto-fonts;
name = "Noto Sans Mono";
};
emoji = {
package = pkgs.noto-fonts-emoji;
name = "Noto Color Emoji";
};
sizes = {
terminal = 6;
applications = 10;
};
};
}