pub-solar-os/flake.nix

72 lines
1.9 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.";
2020-04-23 18:03:55 +00:00
inputs.nixpkgs.url = "nixpkgs/release-20.03";
2020-07-09 06:04:42 +00:00
inputs.unstable.url = "nixpkgs/master";
2020-06-09 16:37:23 +00:00
inputs.home.url = "github:rycee/home-manager/bqv-flakes";
outputs = inputs@{ self, home, nixpkgs, unstable }:
2020-01-04 05:06:31 +00:00
let
inherit (builtins) attrNames attrValues readDir;
inherit (nixpkgs) lib;
inherit (lib) removeSuffix recursiveUpdate;
inherit (utils) pathsToImportedAttrs;
utils = import ./lib/utils.nix { inherit lib; };
system = "x86_64-linux";
pkgImport = pkgs:
import pkgs {
inherit system;
overlays = attrValues self.overlays;
config = { allowUnfree = true; };
};
pkgs = pkgImport nixpkgs;
unstablePkgs = pkgImport unstable;
2020-07-31 04:17:28 +00:00
in
{
nixosConfigurations =
import ./hosts (recursiveUpdate inputs {
inherit system pkgs
unstablePkgs utils;
}
);
2020-01-02 02:24:09 +00:00
devShell."${system}" = import ./shell.nix { inherit pkgs; };
2020-01-02 02:24:09 +00:00
overlay = import ./pkgs;
2020-07-31 04:17:28 +00:00
overlays =
let
overlayDir = ./overlays;
fullPath = name: overlayDir + "/${name}";
overlayPaths = map fullPath (attrNames (readDir overlayDir));
in
pathsToImportedAttrs overlayPaths;
2020-01-02 02:24:09 +00:00
packages."${system}" = self.overlay pkgs pkgs;
2020-07-31 04:17:28 +00:00
nixosModules =
let
# binary cache
cachix = import ./cachix.nix;
cachixAttrs = { inherit cachix; };
2020-07-31 04:17:28 +00:00
# modules
moduleList = import ./modules/list.nix;
modulesAttrs = pathsToImportedAttrs moduleList;
2020-07-31 04:17:28 +00:00
# profiles
profilesList = import ./profiles/list.nix;
profilesAttrs = { profiles = pathsToImportedAttrs profilesList; };
2020-07-31 04:17:28 +00:00
in
recursiveUpdate
(recursiveUpdate cachixAttrs modulesAttrs)
profilesAttrs;
2020-01-02 02:24:09 +00:00
};
2019-12-03 05:18:30 +00:00
}