forked from pub-solar/os
d5ba9f6173
Set the global package set via `hosts/default.nix` passed in from its definition in `flake.nix`.
54 lines
1.4 KiB
Nix
54 lines
1.4 KiB
Nix
{
|
|
description = "A highly structured configuration database.";
|
|
|
|
epoch = 201909;
|
|
|
|
inputs.nixpkgs.url = "github:nrdxp/nixpkgs/fork";
|
|
inputs.home.url = "github:nrdxp/home-manager/flakes";
|
|
|
|
outputs = inputs@{ self, home, nixpkgs }:
|
|
let
|
|
inherit (builtins) listToAttrs baseNameOf attrNames readDir;
|
|
inherit (nixpkgs.lib) removeSuffix;
|
|
system = "x86_64-linux";
|
|
|
|
pkgs = import nixpkgs {
|
|
inherit system;
|
|
overlays = self.overlays;
|
|
config = { allowUnfree = true; };
|
|
};
|
|
|
|
in {
|
|
nixosConfigurations =
|
|
let configs = import ./hosts (inputs // { inherit system pkgs; });
|
|
in configs;
|
|
|
|
overlay = import ./pkgs;
|
|
|
|
overlays = let
|
|
overlays = map (name: import (./overlays + "/${name}"))
|
|
(attrNames (readDir ./overlays));
|
|
in overlays;
|
|
|
|
packages.x86_64-linux = {
|
|
inherit (pkgs) sddm-chili dejavu_nerdfont purs pure;
|
|
};
|
|
|
|
nixosModules = let
|
|
prep = map (path: {
|
|
name = removeSuffix ".nix" (baseNameOf path);
|
|
value = import path;
|
|
});
|
|
|
|
# modules
|
|
moduleList = import ./modules/list.nix;
|
|
modulesAttrs = listToAttrs (prep moduleList);
|
|
|
|
# profiles
|
|
profilesList = import ./profiles/list.nix;
|
|
profilesAttrs = { profiles = listToAttrs (prep profilesList); };
|
|
|
|
in modulesAttrs // profilesAttrs;
|
|
};
|
|
}
|