clan-core/templates/empty/flake.nix

17 lines
444 B
Nix
Raw Normal View History

2024-05-31 15:22:38 +00:00
# Clan configuration file
# TODO: This file is used as a template for the simple GUI workflow
{
inputs.clan-core.url = "git+https://git.clan.lol/clan/clan-core";
2024-05-31 15:22:38 +00:00
outputs =
{ self, clan-core, ... }:
let
clan = clan-core.lib.buildClan {
# This clan builds all its configuration out of the current directory
directory = self;
};
in
{
inherit (clan) nixosConfigurations clanInternals;
};
}