31 lines
605 B
Nix
31 lines
605 B
Nix
{
|
|
inputs = {
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
|
flake-utils.url = "github:numtide/flake-utils";
|
|
};
|
|
|
|
outputs =
|
|
inputs:
|
|
inputs.flake-utils.lib.eachDefaultSystem (
|
|
system:
|
|
let
|
|
pkgs = import inputs.nixpkgs { inherit system; };
|
|
in
|
|
{
|
|
devShells = {
|
|
default = pkgs.mkShell {
|
|
name = "felschr-cv";
|
|
|
|
buildInputs = with pkgs; [
|
|
typst
|
|
tinymist
|
|
|
|
nixfmt-rfc-style
|
|
];
|
|
};
|
|
};
|
|
|
|
formatter = pkgs.nixfmt-rfc-style;
|
|
}
|
|
);
|
|
}
|