38 lines
775 B
Nix
38 lines
775 B
Nix
{ pkgs, ... }:
|
|
{
|
|
stylix = {
|
|
enable = true;
|
|
base16Scheme = "${pkgs.base16-schemes}/share/themes/heetch.yaml";
|
|
image = ./wallpaper.png;
|
|
fonts = {
|
|
serif = {
|
|
package = pkgs.dejavu_fonts;
|
|
name = "DejaVu Serif";
|
|
};
|
|
|
|
sansSerif = {
|
|
package = pkgs.dejavu_fonts;
|
|
name = "DejaVu Sans";
|
|
};
|
|
|
|
monospace = {
|
|
package = pkgs.nerd-fonts.hack;
|
|
name = "Hack Nerd Font";
|
|
};
|
|
|
|
emoji = {
|
|
package = pkgs.noto-fonts-emoji;
|
|
name = "Noto Color Emoji";
|
|
};
|
|
};
|
|
cursor = {
|
|
package = pkgs.mint-cursor-themes;
|
|
name = "Bibata-Modern-Classic";
|
|
size = 24;
|
|
};
|
|
polarity = "dark";
|
|
targets = {
|
|
floorp.profileNames = [ "blue" ];
|
|
};
|
|
};
|
|
}
|