templates: initial templates config

This commit is contained in:
ooks-io 2024-11-19 11:26:21 +11:00
parent ecbb5c8700
commit 151da369a0
10 changed files with 113 additions and 0 deletions

View file

@ -0,0 +1,15 @@
{
description = "Description for the project";
inputs = {
flake-parts.url = "github:hercules-ci/flake-parts";
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
systems.url = "github:nix-systems/default-linux";
};
outputs = inputs @ {flake-parts, ...}:
flake-parts.lib.mkFlake {inherit inputs;} {
systems = import inputs.systems;
imports = [./outputs];
};
}