diff --git a/flake.nix b/flake.nix index cd843ae..5efb151 100644 --- a/flake.nix +++ b/flake.nix @@ -12,6 +12,7 @@ modules = [ ./configuration.nix ./podman.nix + ./fonts.nix ]; }; }; diff --git a/fonts.nix b/fonts.nix new file mode 100644 index 0000000..9f9cf19 --- /dev/null +++ b/fonts.nix @@ -0,0 +1,7 @@ +{ pkgs, ... }: +{ + fonts.packages = with pkgs; [ + fira-code + fira-code-symbols + ]; +}