2019-12-03 05:18:30 +00:00
|
|
|
{
|
2019-12-05 08:36:15 +00:00
|
|
|
description = "A highly structured configuration database.";
|
2019-12-05 05:36:36 +00:00
|
|
|
|
2019-12-03 05:18:30 +00:00
|
|
|
epoch = 201909;
|
|
|
|
|
2019-12-05 05:36:36 +00:00
|
|
|
outputs = { self, nixpkgs, nix }: {
|
|
|
|
nixosConfigurations =
|
|
|
|
let
|
|
|
|
configs = import ./configurations {
|
|
|
|
inherit nix nixpkgs;
|
|
|
|
flake = self;
|
2019-12-14 04:30:43 +00:00
|
|
|
utils = import ./lib/utils.nix { lib = nixpkgs.lib; };
|
2019-12-05 05:36:36 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
in
|
|
|
|
configs;
|
2019-12-03 05:18:30 +00:00
|
|
|
|
|
|
|
};
|
2019-12-05 05:36:36 +00:00
|
|
|
|
2019-12-03 05:18:30 +00:00
|
|
|
}
|