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:
37
configs/stylix.nix
Normal file
37
configs/stylix.nix
Normal 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;
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user