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-14 04:39:25 +00:00
|
|
|
inputs.nixpkgs.url = "github:nrdxp/nixpkgs/fork";
|
2019-12-15 08:35:12 +00:00
|
|
|
inputs.home.url = "github:nrdxp/home-manager/flakes";
|
2019-12-14 04:39:25 +00:00
|
|
|
|
2019-12-17 22:56:02 +00:00
|
|
|
outputs = { self, home, nixpkgs }: {
|
2019-12-31 00:45:30 +00:00
|
|
|
nixosConfigurations = let
|
|
|
|
configs = import ./hosts {
|
|
|
|
inherit nixpkgs;
|
|
|
|
flake = self;
|
|
|
|
home = home.nixosModules.home-manager;
|
|
|
|
};
|
2019-12-05 05:36:36 +00:00
|
|
|
|
2019-12-31 00:45:30 +00:00
|
|
|
in
|
|
|
|
configs;
|
|
|
|
|
|
|
|
overlays = let
|
|
|
|
pkgs = import ./pkgs;
|
|
|
|
in
|
|
|
|
[ pkgs ];
|
2019-12-31 01:00:09 +00:00
|
|
|
|
|
|
|
nixosModules = import ./modules;
|
2019-12-03 05:18:30 +00:00
|
|
|
};
|
2019-12-05 05:36:36 +00:00
|
|
|
|
2019-12-03 05:18:30 +00:00
|
|
|
}
|