os/flake.nix
2019-12-15 01:35:12 -07:00

24 lines
469 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, nix }: {
nixosConfigurations =
let
configs = import ./configurations {
inherit nix nixpkgs;
flake = self;
home = home.nixosModules.home-manager;
};
in
configs;
};
}