Files
clan-core/templates/new-clan/flake.nix
2023-07-26 11:48:19 +02:00

16 lines
349 B
Nix

{
description = "<Put your description here>";
inputs = {
clan-core.url = "git+https://git.clan.lol/clan/clan-core";
flake-parts.url = "github:hercules-ci/flake-parts";
};
outputs = inputs @ { flake-parts, ... }:
flake-parts.lib.mkFlake { inherit inputs; } {
imports = [
./clan-flake-module.nix
];
};
}