1
0

Fix fonts

This commit is contained in:
Jip J. Dekker 2025-01-15 13:25:47 +11:00
parent 4953bc3e75
commit d420733f1a
No known key found for this signature in database
3 changed files with 10 additions and 1 deletions

View File

@ -32,6 +32,8 @@
# MacOS specific packages # MacOS specific packages
]; ];
fonts.packages = import ../shared/fonts.nix { inherit pkgs; };
# Setup MacOS specific services # Setup MacOS specific services
services = { services = {
aerospace = { aerospace = {

View File

@ -32,6 +32,7 @@
gitAndTools.gitFull gitAndTools.gitFull
]); ]);
system.stateVersion = "21.05"; # Don't change this fonts.packages = import ../shared/fonts.nix { inherit pkgs; };
system.stateVersion = "21.05";
} }

6
shared/fonts.nix Normal file
View File

@ -0,0 +1,6 @@
{ pkgs }:
with pkgs; [
ibm-plex
atkinson-hyperlegible
(nerdfonts.override { fonts = [ "Go-Mono" ]; })
]