clan-core/templates/minimal/flake.nix

15 lines
337 B
Nix
Raw Normal View History

{
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;
};
}