6919f27890
Clearer naming to distinguish NixOS system modules from Home Manager modules (nixos/ vs home/). 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
22 lines
340 B
Nix
22 lines
340 B
Nix
{pkgs, ...}: {
|
|
fonts.packages = with pkgs; [
|
|
nerd-fonts.fira-code
|
|
nerd-fonts.jetbrains-mono
|
|
|
|
# google
|
|
noto-fonts
|
|
noto-fonts-cjk-sans
|
|
noto-fonts-cjk-serif
|
|
noto-fonts-color-emoji
|
|
roboto
|
|
open-sans
|
|
lato
|
|
montserrat
|
|
inter
|
|
poppins
|
|
fira-code
|
|
fira-code-symbols
|
|
jetbrains-mono
|
|
];
|
|
}
|