templates: add minimal clan flake template for (G)UI

This commit is contained in:
DavHau
2024-06-08 15:19:36 -07:00
parent 5df6147661
commit f074a14247
2 changed files with 36 additions and 1 deletions

View File

@@ -0,0 +1,14 @@
{
inputs.clan-core.url = "git+https://git.clan.lol/clan/clan-core";
outputs =
{ self, clan-core, ... }:
let
# Usage see: https://docs.clan.lol
clan = clan-core.lib.buildClan { directory = self; };
in
{
# all machines managed by Clan
inherit (clan) nixosConfigurations clanInternals;
};
}