16 lines
289 B
Nix
16 lines
289 B
Nix
{
|
|
flake.modules.nixos.desktop =
|
|
{ pkgs, ... }:
|
|
{
|
|
fonts = {
|
|
fontconfig.enable = true;
|
|
|
|
packages = with pkgs; [
|
|
nerd-fonts.jetbrains-mono
|
|
nerd-fonts.meslo-lg
|
|
terminus_font
|
|
terminus_font_ttf
|
|
];
|
|
};
|
|
};
|
|
}
|