configuration: extract nixos config into more files

This commit is contained in:
Leonardo Eugênio 2024-05-27 12:29:42 -03:00
parent 3333772c23
commit 3b411b0c6d
9 changed files with 111 additions and 113 deletions

9
system/fonts.nix Normal file
View file

@ -0,0 +1,9 @@
{ pkgs, ... }: {
fonts.enableDefaultPackages = true;
fonts.packages = with pkgs; [
noto-fonts
noto-fonts-cjk
noto-fonts-emoji
nerdfonts_fira_hack
];
}