Add fonts

This commit is contained in:
Torjus Håkestad 2024-02-27 04:49:32 +01:00
parent 1584a9baa1
commit d29bc93642
2 changed files with 8 additions and 0 deletions

View File

@ -12,6 +12,7 @@
modules = [
./configuration.nix
./podman.nix
./fonts.nix
];
};
};

7
fonts.nix Normal file
View File

@ -0,0 +1,7 @@
{ pkgs, ... }:
{
fonts.packages = with pkgs; [
fira-code
fira-code-symbols
];
}