dotfiles/flake.nix

22 lines
614 B
Nix
Raw Normal View History

2023-02-06 05:49:27 +00:00
{
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";
flake-compat.url = "github:edolstra/flake-compat";
};
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 [];
};
}