forked from nico/dots
nix: reorganise hyprland module into smaller modules
This commit is contained in:
parent
6d6d635fdd
commit
51de9e32c2
5 changed files with 46 additions and 24 deletions
14
modules/fonts.nix
Normal file
14
modules/fonts.nix
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
# install basic fonts
|
||||
fonts = {
|
||||
fontDir.enable = true;
|
||||
packages = with pkgs; [
|
||||
noto-fonts # most langs and emojis
|
||||
noto-fonts-cjk-sans # gets japanese and chinese langs
|
||||
nerdfonts # programming fonts
|
||||
corefonts # basic web fonts
|
||||
];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue