2019-12-03 06:18:30 +01:00
|
|
|
{
|
2019-12-05 09:36:15 +01:00
|
|
|
description = "A highly structured configuration database.";
|
2019-12-05 06:36:36 +01:00
|
|
|
|
2019-12-03 06:18:30 +01:00
|
|
|
epoch = 201909;
|
|
|
|
|
2019-12-14 05:39:25 +01:00
|
|
|
inputs.nixpkgs.url = "github:nrdxp/nixpkgs/fork";
|
2019-12-15 09:35:12 +01:00
|
|
|
inputs.home.url = "github:nrdxp/home-manager/flakes";
|
2019-12-14 05:39:25 +01:00
|
|
|
|
2019-12-17 23:56:02 +01:00
|
|
|
outputs = { self, home, nixpkgs }: {
|
2019-12-05 06:36:36 +01:00
|
|
|
nixosConfigurations =
|
|
|
|
let
|
|
|
|
configs = import ./configurations {
|
2019-12-17 23:56:02 +01:00
|
|
|
inherit nixpkgs;
|
2019-12-05 06:36:36 +01:00
|
|
|
flake = self;
|
2019-12-15 09:35:12 +01:00
|
|
|
home = home.nixosModules.home-manager;
|
2019-12-05 06:36:36 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
in
|
|
|
|
configs;
|
2019-12-03 06:18:30 +01:00
|
|
|
};
|
2019-12-05 06:36:36 +01:00
|
|
|
|
2019-12-03 06:18:30 +01:00
|
|
|
}
|