devos/flake.nix

23 lines
450 B
Nix
Raw Normal View History

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