Separate out fonts

And also remove all but the fonts i use for everything.
This commit is contained in:
larstvei 2024-10-06 22:23:30 +02:00
parent 2a7580fb3c
commit 38f62cdff6
2 changed files with 8 additions and 10 deletions

7
modules/fonts.nix Normal file
View File

@ -0,0 +1,7 @@
{ pkgs }:
with pkgs;
[
source-sans
source-code-pro
source-serif
]

View File

@ -1,16 +1,7 @@
{ pkgs, lib, ... }:
{
fonts.packages = with pkgs; [
fira
fira-code
iosevka
roboto
roboto-mono
source-sans
source-code-pro
source-serif
];
fonts.packages = import ./fonts.nix { inherit pkgs; };
users.users."larstvei".home = "/Users/larstvei";