2021-10-27 09:05:52 +00: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 21:05:53 +00:00
|
|
|
templates = {
|
|
|
|
default = {
|
|
|
|
path = ./template/default;
|
|
|
|
description = ''
|
2022-05-25 14:36:33 +00:00
|
|
|
A minimal flake using flake-parts.
|
2022-05-11 21:05:53 +00:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
multi-module = {
|
|
|
|
path = ./template/multi-module;
|
|
|
|
description = ''
|
2022-05-25 14:36:33 +00:00
|
|
|
A minimal flake using flake-parts.
|
2022-05-11 21:05:53 +00:00
|
|
|
'';
|
|
|
|
};
|
2021-11-21 14:28:25 +00:00
|
|
|
};
|
2021-10-27 09:05:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|