devos/flake.nix

23 lines
459 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
configs = import ./configurations {
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
}