pub-solar-os/flake.nix

24 lines
469 B
Nix
Raw Normal View History

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