Heavily inspired by https://github.com/Doc-Steve/dendritic-design-with-flake-parts. > Atomic commits? Never heard of them!
12 lines
219 B
Nix
12 lines
219 B
Nix
{
|
|
flake.modules.nixos.nerdfonts = { pkgs, ... }: {
|
|
fonts = {
|
|
enableDefaultPackages = true;
|
|
packages = with pkgs; [
|
|
nerd-fonts.jetbrains-mono
|
|
];
|
|
fontDir.enable = true;
|
|
};
|
|
};
|
|
}
|