refactor: moved system modules around to be more coherent
This commit is contained in:
parent
13fc2a1450
commit
263728f6b6
16 changed files with 72 additions and 60 deletions
20
systems/modules/fonts/terminess.nix
Normal file
20
systems/modules/fonts/terminess.nix
Normal file
|
@ -0,0 +1,20 @@
|
|||
{ pkgs, config, ... }: {
|
||||
fonts.packages = with pkgs; [
|
||||
nerd-fonts.terminess-ttf
|
||||
];
|
||||
stylix.fonts = {
|
||||
serif = config.stylix.fonts.monospace;
|
||||
sansSerif = config.stylix.fonts.monospace;
|
||||
emoji = config.stylix.fonts.monospace;
|
||||
monospace = {
|
||||
package = pkgs.nerd-fonts.terminess-ttf;
|
||||
name = "Terminess Nerd Font Mono";
|
||||
};
|
||||
sizes = {
|
||||
applications = 16;
|
||||
desktop = 12;
|
||||
popups = 12;
|
||||
terminal = 16;
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue