templates: initial templates config
This commit is contained in:
parent
ecbb5c8700
commit
151da369a0
10 changed files with 113 additions and 0 deletions
15
outputs/templates/go/flake.nix
Normal file
15
outputs/templates/go/flake.nix
Normal 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];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue