27 lines
532 B
Nix
27 lines
532 B
Nix
{
|
|
description = "A highly structured configuration database.";
|
|
|
|
epoch = 201909;
|
|
|
|
inputs.nixpkgs.url = "github:nrdxp/nixpkgs/fork";
|
|
inputs.home.url = "github:nrdxp/home-manager/flakes";
|
|
|
|
outputs = { self, home, nixpkgs }: {
|
|
nixosConfigurations = let
|
|
configs = import ./hosts {
|
|
inherit nixpkgs;
|
|
flake = self;
|
|
home = home.nixosModules.home-manager;
|
|
};
|
|
|
|
in
|
|
configs;
|
|
|
|
overlay = import ./pkgs;
|
|
|
|
overlays = [ self.overlay ];
|
|
|
|
nixosModules = import ./modules;
|
|
};
|
|
|
|
}
|