pub-solar-os/flake.nix

50 lines
1.2 KiB
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;
2020-01-06 07:26:48 +00:00
inputs.nixpkgs.url = "github:nrdxp/nixpkgs/fork";
2019-12-15 08:35:12 +00:00
inputs.home.url = "github:nrdxp/home-manager/flakes";
outputs = args@{ self, home, nixpkgs }:
2020-01-04 05:06:31 +00:00
let
inherit (builtins) listToAttrs baseNameOf attrNames readDir;
inherit (nixpkgs.lib) removeSuffix;
2020-01-04 05:06:31 +00:00
pkgs = import nixpkgs {
system = "x86_64-linux";
overlays = self.overlays;
};
in {
nixosConfigurations = let configs = import ./hosts args;
in configs;
2020-01-02 02:24:09 +00:00
overlay = import ./pkgs;
overlays = let
overlays = map (name: import (./overlays + "/${name}"))
(attrNames (readDir ./overlays));
in overlays;
2020-01-02 02:24:09 +00:00
packages.x86_64-linux = {
2020-01-07 20:05:38 +00:00
inherit (pkgs) sddm-chili dejavu_nerdfont purs pure;
2019-12-31 00:45:30 +00:00
};
nixosModules = let
prep = map (path: {
name = removeSuffix ".nix" (baseNameOf path);
value = import path;
});
moduleList = import ./modules;
modulesAttrs = listToAttrs (prep moduleList);
profilesList = import ./profiles;
profilesAttrs = { profiles = listToAttrs (prep profilesList); };
in modulesAttrs // profilesAttrs;
2020-01-02 02:24:09 +00:00
};
2019-12-03 05:18:30 +00:00
}