Add inter font

Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
This commit is contained in:
2025-08-06 10:53:24 +02:00
parent d906171b37
commit d2114c03f5
26 changed files with 254 additions and 8 deletions

View File

@@ -24,7 +24,12 @@
treefmt = inputs.treefmt-nix.lib.evalModule pkgs ./treefmt.nix;
in
{
devShells.${system}.default = pkgs.mkShell { packages = with pkgs; [ hugo ]; };
devShells.${system}.default = pkgs.mkShell {
packages = with pkgs; [
hugo
unzip
];
};
formatter.${system} = treefmt.config.build.wrapper;
checks.formatting.${system} = treefmt.config.build.check inputs.self;