Update rust

This commit is contained in:
Invariantspace 2023-11-23 22:34:06 -08:00
parent 7481823a4f
commit 8abce96bab
3 changed files with 144 additions and 23 deletions

15
template/typst/flake.nix Normal file
View file

@ -0,0 +1,15 @@
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, flake-utils, nixpkgs }:
flake-utils.lib.eachDefaultSystem (system:
let pkgs = nixpkgs.legacyPackages.${system};
in {
devShells.default = pkgs.mkShell {
packages = with pkgs; [ typst ];
};
});
}