typst template, more complete hugo template.

This commit is contained in:
Gabe Venberg 2024-12-04 00:54:27 +01:00
parent 6b68c00069
commit 73451d607b
14 changed files with 41 additions and 0 deletions

25
templates/typst/flake.nix Normal file
View file

@ -0,0 +1,25 @@
{
description = "A very basic flake";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = {
self,
nixpkgs,
flake-utils,
}:
flake-utils.lib.eachDefaultSystem (system: let
pkgs = import nixpkgs {inherit system;};
in
with pkgs; {
devShells.default = mkShell {
buildInputs = [
typst
just
];
};
});
}