1
0
Fork 0
mirror of https://github.com/hercules-ci/flake-parts.git synced 2025-03-05 16:36:56 +00:00
flake-parts/flake.nix

27 lines
583 B
Nix
Raw Normal View History

2021-10-27 11:05:52 +02:00
{
description = "Flake basics described using the module system";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
};
outputs = { self, nixpkgs, ... }: {
lib = import ./lib.nix { inherit (nixpkgs) lib; };
2022-05-11 23:05:53 +02:00
templates = {
default = {
path = ./template/default;
description = ''
A minimal flake using flake-modules-core.
'';
};
multi-module = {
path = ./template/multi-module;
description = ''
A minimal flake using flake-modules-core.
'';
};
2021-11-21 15:28:25 +01:00
};
2021-10-27 11:05:52 +02:00
};
}