DEVELOPMENT ENVIRONMENT

~liljamo/nix-arta

ref: 8486e1ae5dc335d176042927e5d01fcfcbcc9ba0 nix-arta/modules/nixos/fonts.nix -rw-r--r-- 261 bytes
8486e1aeJonni Liljamo niri: a couple of config changes 11 days ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
  flake.modules.nixos.fonts = {pkgs, ...}: let
    fonts = with pkgs; [
      font-awesome

      liberation_ttf

      nerd-fonts.fira-code
      nerd-fonts.victor-mono
    ];
  in {
    environment.systemPackages = fonts;
    fonts.packages = fonts;
  };
}