devos/flake.nix

67 lines
2.0 KiB
Nix
Raw Normal View History

2019-12-03 06:18:30 +01:00
{
2019-12-05 09:36:15 +01:00
description = "A highly structured configuration database.";
2020-04-23 20:03:55 +02:00
inputs.nixpkgs.url = "nixpkgs/release-20.03";
inputs.unstable.url = "nixpkgs/nixos-unstable";
2020-06-09 18:37:23 +02:00
inputs.home.url = "github:rycee/home-manager/bqv-flakes";
outputs = inputs@{ self, home, nixpkgs, unstable }:
2020-01-04 06:06:31 +01:00
let
inherit (builtins) listToAttrs baseNameOf attrNames attrValues readDir;
inherit (nixpkgs.lib) removeSuffix;
system = "x86_64-linux";
# Generate an attribute set by mapping a function over a list of values.
genAttrs' = values: f: listToAttrs (map f values);
# Convert a list to file paths to attribute set
# that has the filenames stripped of nix extension as keys
# and imported content of the file as value.
pathsToImportedAttrs = paths:
genAttrs' paths (path: {
name = removeSuffix ".nix" (baseNameOf path);
value = import path;
});
pkgImport = pkgs:
import pkgs {
inherit system;
overlays = attrValues self.overlays;
config = { allowUnfree = true; };
};
pkgs = pkgImport nixpkgs;
unstablePkgs = pkgImport unstable;
in {
nixosConfigurations = let
configs =
import ./hosts (inputs // { inherit system pkgs unstablePkgs; });
in configs;
2020-01-02 03:24:09 +01:00
overlay = import ./pkgs;
overlays = let
overlayDir = ./overlays;
fullPath = name: overlayDir + "/${name}";
overlayPaths = map fullPath (attrNames (readDir overlayDir));
in pathsToImportedAttrs overlayPaths;
2020-01-02 03:24:09 +01:00
packages.x86_64-linux = {
2020-01-07 21:05:38 +01:00
inherit (pkgs) sddm-chili dejavu_nerdfont purs pure;
2019-12-31 01:45:30 +01:00
};
nixosModules = let
# modules
moduleList = import ./modules/list.nix;
modulesAttrs = pathsToImportedAttrs moduleList;
# profiles
profilesList = import ./profiles/list.nix;
profilesAttrs = { profiles = pathsToImportedAttrs profilesList; };
in modulesAttrs // profilesAttrs;
2020-01-02 03:24:09 +01:00
};
2019-12-03 06:18:30 +01:00
}