This commit is contained in:
Lucy von Overheidt 2025-09-09 18:38:16 +02:00
parent d90e44b8cb
commit cca8deb36c
7 changed files with 459 additions and 36 deletions

30
modules/stylix.nix Normal file
View file

@ -0,0 +1,30 @@
{ pkgs, config, ... }:
{
stylix = {
image = ../assets/wp6553608.jpg;
enable = true;
polarity = "dark";
opacity = {
popups = 1.0;
terminal = 1.0;
};
fonts = {
serif = config.stylix.fonts.sansSerif;
sansSerif = {
package = pkgs.adwaita-fonts;
name = "Adwaita Sans";
};
monospace = {
package = pkgs.nerd-fonts.geist-mono;
name = "Geist Nerd Font Mono";
};
emoji = {
package = pkgs.noto-fonts-emoji;
name = "Noto Color Emoji";
};
};
};
}