21 lines
559 B
Nix
21 lines
559 B
Nix
{
|
|
description = "Start your Nix cluster here";
|
|
nixConfig = {
|
|
accept-flake-config = true;
|
|
experimental-features = "nix-command flakes";
|
|
# for darwin's browser
|
|
allowUnsupportedSystem = true;
|
|
};
|
|
inputs = {
|
|
boost.url = "git+https://git.pegasust.com/pegasust/boost-nix.git";
|
|
};
|
|
|
|
outputs = {boost, ...}@flakes: let
|
|
inherit (boost) lib overlays pkgs;
|
|
inherit (lib) forEachSystem stdx sys utils;
|
|
in utils.repos.mkConfigurations {
|
|
users = utils.user.mkConfigurations [];
|
|
hosts = utils.host.mkConfigurations [];
|
|
};
|
|
}
|