nix: reorganise hyprland module into smaller modules

This commit is contained in:
Nico 2025-05-03 16:15:58 +10:00
parent 6d6d635fdd
commit 51de9e32c2
5 changed files with 46 additions and 24 deletions

14
modules/fonts.nix Normal file
View 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
];
};
}