Files
clan-core/templates/new-clan/flake.nix
2023-08-29 13:54:06 +00:00

12 lines
242 B
Nix

{
description = "<Put your description here>";
inputs.clan-core.url = "git+https://git.clan.lol/clan/clan-core";
outputs = { clan-core, ... }: {
nixosConfigurations = clan-core.lib.buildClan {
directory = ./.;
};
};
}