mirror of
https://gitlab.com/upRootNutrition/resume.git
synced 2025-06-15 09:05:12 -05:00
29 lines
641 B
Nix
29 lines
641 B
Nix
![]() |
{
|
||
|
description = "Typst Environment";
|
||
|
|
||
|
inputs = {
|
||
|
devshell.url = "github:numtide/devshell";
|
||
|
flake-root.url = "github:srid/flake-root";
|
||
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
||
|
pre-commit-hooks-nix.url = "github:cachix/pre-commit-hooks.nix";
|
||
|
};
|
||
|
|
||
|
outputs =
|
||
|
inputs@{
|
||
|
nixpkgs,
|
||
|
flake-parts,
|
||
|
self,
|
||
|
...
|
||
|
}:
|
||
|
flake-parts.lib.mkFlake { inherit inputs; } {
|
||
|
imports = [
|
||
|
inputs.devshell.flakeModule
|
||
|
inputs.flake-root.flakeModule
|
||
|
inputs.pre-commit-hooks-nix.flakeModule
|
||
|
./parts
|
||
|
];
|
||
|
|
||
|
systems = nixpkgs.lib.systems.flakeExposed;
|
||
|
};
|
||
|
}
|