ark/flake.nix

29 lines
539 B
Nix
Raw Normal View History

2019-12-03 08:18:30 +03:00
{
2019-12-05 11:36:15 +03:00
description = "A highly structured configuration database.";
2019-12-03 08:18:30 +03:00
epoch = 201909;
inputs.nixpkgs.url = "github:nrdxp/nixpkgs/fork";
2019-12-15 11:35:12 +03:00
inputs.home.url = "github:nrdxp/home-manager/flakes";
outputs = { self, home, nixpkgs }: {
2019-12-31 03:45:30 +03:00
nixosConfigurations = let
configs = import ./hosts {
inherit nixpkgs;
flake = self;
home = home.nixosModules.home-manager;
};
2019-12-31 03:45:30 +03:00
in
configs;
overlays = let
pkgs = import ./pkgs;
in
[ pkgs ];
2019-12-31 04:00:09 +03:00
nixosModules = import ./modules;
2019-12-03 08:18:30 +03:00
};
2019-12-03 08:18:30 +03:00
}