aaaa, font things

This commit is contained in:
Noa Aarts 2025-07-30 15:24:59 +02:00
parent 2d78b803b1
commit 0c52dc1241
Signed by: noa
GPG key ID: 1850932741EFF672

View file

@ -40,20 +40,19 @@ let
''; '';
in in
{ {
imports = imports = [
[ # I made some cursed modules (waybar is the worst)
# I made some cursed modules (waybar is the worst) ../../modules
../../modules # Was too lazy to do fully declarative nvim, so the lua is hidden there as well
# Was too lazy to do fully declarative nvim, so the lua is hidden there as well ../nvim/nvim.nix
../nvim/nvim.nix # we import extraConfig, it's funny that this has the correct effect
# we import extraConfig, it's funny that this has the correct effect extraConfig
extraConfig ]
] # these have no use if there isn't any display....
# these have no use if there isn't any display.... ++ lib.optionals enableGraphical [
++ lib.optionals enableGraphical [ ../discord/discord.nix
../discord/discord.nix ../spotify.nix
../spotify.nix ];
];
home = { home = {
file = { file = {
@ -512,7 +511,10 @@ in
}; };
enable = true; enable = true;
fonts = { fonts = {
emoji = config.stylix.fonts.monospace; emoji = {
name = "Maple Mono NF";
package = pkgs.maple-mono.NF;
};
monospace = { monospace = {
name = "Maple Mono NF"; name = "Maple Mono NF";
package = pkgs.maple-mono.NF; package = pkgs.maple-mono.NF;
@ -521,7 +523,11 @@ in
name = "Lexend"; name = "Lexend";
package = pkgs.lexend; package = pkgs.lexend;
}; };
serif = config.stylix.fonts.sansSerif; serif = {
name = "Lexend";
package = pkgs.lexend;
};
}; };
opacity = { opacity = {
terminal = 0.2; terminal = 0.2;