Files
TMA4135/flake.nix
2025-08-20 20:33:17 +02:00

26 lines
473 B
Nix

{
description = "typst for a better world";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
};
outputs =
{ self, nixpkgs, ... }:
let
system = "x86_64-linux";
pkgs = import nixpkgs { inherit system; };
in
{
devShells.${system}.default = pkgs.mkShell {
buildInputs = with pkgs; [
typst
typstyle
];
shellHook = ''
echo welcome!
'';
};
};
}