Files
clan-core/templates/minimal/flake.nix
Johannes Kirschbauer 5b4105b4d8 Fix minimal template
2024-07-24 10:34:11 +02:00

18 lines
383 B
Nix

{
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 {
meta.name = "miniclan";
directory = self;
};
in
{
# all machines managed by Clan
inherit (clan) nixosConfigurations clanInternals;
};
}