os/flake.nix

31 lines
695 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";
2020-01-04 05:06:31 +00:00
outputs = args@{ self, home, nixpkgs }:
let
pkgs = import nixpkgs {
system = "x86_64-linux";
overlays = self.overlays;
};
in {
nixosConfigurations = let configs = import ./hosts args;
2020-01-02 02:24:09 +00:00
2020-01-04 05:06:31 +00:00
in configs;
2020-01-02 02:24:09 +00:00
overlay = import ./pkgs;
overlays = [ self.overlay ];
packages.x86_64-linux = {
inherit (pkgs) sddm-chili dejavu_nerdfont purs;
2019-12-31 00:45:30 +00:00
};
2020-01-04 05:06:31 +00:00
nixosModules = (import ./modules) // { profiles = import ./profiles; };
2020-01-02 02:24:09 +00:00
};
2019-12-03 05:18:30 +00:00
}