2019-12-02 22:18:30 -07:00
|
|
|
{
|
2019-12-05 01:36:15 -07:00
|
|
|
description = "A highly structured configuration database.";
|
2019-12-04 22:36:36 -07:00
|
|
|
|
2019-12-02 22:18:30 -07:00
|
|
|
epoch = 201909;
|
|
|
|
|
2019-12-13 21:39:25 -07:00
|
|
|
inputs.nixpkgs.url = "github:nrdxp/nixpkgs/fork";
|
2019-12-15 01:35:12 -07:00
|
|
|
inputs.home.url = "github:nrdxp/home-manager/flakes";
|
2019-12-13 21:39:25 -07:00
|
|
|
|
2020-01-01 19:24:09 -07:00
|
|
|
outputs = { self, home, nixpkgs }: let
|
|
|
|
pkgs = import nixpkgs {
|
|
|
|
system = "x86_64-linux";
|
|
|
|
overlays = self.overlays;
|
|
|
|
};
|
|
|
|
in
|
|
|
|
{
|
|
|
|
nixosConfigurations = let
|
|
|
|
configs = import ./hosts {
|
|
|
|
inherit nixpkgs;
|
|
|
|
flake = self;
|
|
|
|
home = home.nixosModules.home-manager;
|
|
|
|
};
|
|
|
|
|
|
|
|
in
|
|
|
|
configs;
|
|
|
|
|
|
|
|
overlay = import ./pkgs;
|
|
|
|
|
|
|
|
overlays = [ self.overlay ];
|
|
|
|
|
|
|
|
packages.x86_64-linux = {
|
|
|
|
inherit (pkgs) sddm-chili dejavu_nerdfont purs;
|
2019-12-30 17:45:30 -07:00
|
|
|
};
|
2019-12-04 22:36:36 -07:00
|
|
|
|
2020-01-01 19:24:09 -07:00
|
|
|
nixosModules = import ./modules;
|
|
|
|
};
|
2019-12-02 22:18:30 -07:00
|
|
|
}
|