2021-04-19 03:29:28 +00:00
|
|
|
{ lib }:
|
|
|
|
|
|
|
|
{ userFlakeSelf, userFlakeNixOS }:
|
2021-03-26 18:57:24 +00:00
|
|
|
|
|
|
|
{ args }:
|
|
|
|
let
|
2021-04-02 02:10:24 +00:00
|
|
|
argOpts = with lib; { config, ... }:
|
2021-03-26 18:57:24 +00:00
|
|
|
let
|
2021-04-18 01:35:05 +00:00
|
|
|
inherit (lib) os;
|
2021-03-26 18:57:24 +00:00
|
|
|
|
|
|
|
inherit (config) self;
|
|
|
|
|
2021-04-12 03:01:13 +00:00
|
|
|
maybeImport = obj:
|
|
|
|
if (builtins.typeOf obj == "path") || (builtins.typeOf obj == "string") then
|
|
|
|
import obj
|
|
|
|
else
|
|
|
|
obj;
|
|
|
|
|
|
|
|
/* Custom types needed for arguments */
|
|
|
|
|
2021-04-12 15:42:22 +00:00
|
|
|
moduleType = with types; pathTo (anything // {
|
2021-04-10 01:22:08 +00:00
|
|
|
inherit (submodule { }) check;
|
2021-03-26 18:57:24 +00:00
|
|
|
description = "valid module";
|
2021-04-12 15:42:22 +00:00
|
|
|
});
|
|
|
|
overlayType = pathTo (types.anything // {
|
2021-04-12 03:01:13 +00:00
|
|
|
check = builtins.isFunction;
|
|
|
|
description = "valid Nixpkgs overlay";
|
2021-04-12 15:42:22 +00:00
|
|
|
});
|
2021-04-12 05:25:37 +00:00
|
|
|
systemType = types.enum config.supportedSystems;
|
2021-04-02 02:10:24 +00:00
|
|
|
flakeType = with types; (addCheck attrs lib.isStorePath) // {
|
2021-04-12 03:01:13 +00:00
|
|
|
description = "nix flake";
|
|
|
|
};
|
|
|
|
|
2021-04-12 15:42:22 +00:00
|
|
|
# Apply maybeImport during merge and before check
|
2021-04-12 03:01:13 +00:00
|
|
|
# To simplify apply keys and improve type checking
|
2021-04-12 15:42:22 +00:00
|
|
|
pathTo = elemType: coercedTo path maybeImort elemType;
|
2021-04-12 03:01:13 +00:00
|
|
|
|
2021-04-12 15:42:22 +00:00
|
|
|
# Accepts single item or a list
|
|
|
|
# apply keys end up with a list
|
|
|
|
# This should not be used if expecting a nested list
|
|
|
|
# all lists will get flattened by this
|
|
|
|
coercedListOf = elemType:
|
|
|
|
let coerceToList = x: flatten (singleton x); in
|
|
|
|
with types; coercedTo elemType coerceToList (listOf elemType);
|
|
|
|
|
|
|
|
pathToListOf = x: pathTo (coercedListOf x);
|
2021-04-12 03:01:13 +00:00
|
|
|
|
|
|
|
/* Submodules needed for API containers */
|
|
|
|
|
|
|
|
channelsModule = {
|
|
|
|
options = with types; {
|
|
|
|
input = mkOption {
|
|
|
|
type = flakeType;
|
2021-04-19 03:29:28 +00:00
|
|
|
default = userFlakeNixOS;
|
2021-04-12 03:01:13 +00:00
|
|
|
description = ''
|
|
|
|
nixpkgs flake input to use for this channel
|
2021-04-02 02:10:24 +00:00
|
|
|
'';
|
2021-04-12 03:01:13 +00:00
|
|
|
};
|
|
|
|
overlays = mkOption {
|
2021-04-12 15:42:22 +00:00
|
|
|
type = pathToListOf overlayType;
|
2021-04-12 03:01:13 +00:00
|
|
|
default = [ ];
|
|
|
|
description = ''
|
|
|
|
overlays to apply to this channel
|
|
|
|
these will get exported under the 'overlays' flake output as <channel>/<name>
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
externalOverlays = mkOption {
|
2021-04-12 15:42:22 +00:00
|
|
|
type = pathToListOf overlayType;
|
2021-04-12 03:01:13 +00:00
|
|
|
default = [ ];
|
|
|
|
description = ''
|
|
|
|
overlays to apply to the channel that don't get exported to the flake output
|
|
|
|
useful to include overlays from inputs
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
config = mkOption {
|
|
|
|
type = pathTo attrs;
|
|
|
|
default = { };
|
|
|
|
description = ''
|
|
|
|
nixpkgs config for this channel
|
|
|
|
'';
|
2021-03-26 18:57:24 +00:00
|
|
|
};
|
|
|
|
};
|
2021-04-12 03:01:13 +00:00
|
|
|
};
|
|
|
|
|
2021-04-22 02:44:08 +00:00
|
|
|
hostModule = {
|
2021-04-12 03:01:13 +00:00
|
|
|
options = with types; {
|
|
|
|
system = mkOption {
|
|
|
|
type = systemType;
|
|
|
|
default = "x86_64-linux";
|
|
|
|
description = ''
|
2021-04-22 02:44:08 +00:00
|
|
|
system for this host
|
2021-04-12 03:01:13 +00:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
channelName = mkOption {
|
2021-04-12 05:25:37 +00:00
|
|
|
type = types.enum (builtins.attrValues config.channels);
|
2021-04-12 03:01:13 +00:00
|
|
|
default = "nixpkgs";
|
|
|
|
description = ''
|
2021-04-22 02:44:08 +00:00
|
|
|
Channel this host should follow
|
2021-04-12 03:01:13 +00:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
modules = mkOption {
|
2021-04-12 15:42:22 +00:00
|
|
|
type = pathToListOf moduleType;
|
2021-04-12 03:01:13 +00:00
|
|
|
default = [ ];
|
|
|
|
description = ''
|
2021-04-22 02:44:08 +00:00
|
|
|
The configuration for this host
|
2021-04-12 03:01:13 +00:00
|
|
|
'';
|
|
|
|
};
|
2021-04-12 15:42:22 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-04-22 02:44:08 +00:00
|
|
|
# This is only needed for hostDefaults
|
|
|
|
# modules in each host don't get exported
|
2021-04-12 15:42:22 +00:00
|
|
|
externalModulesModule = {
|
|
|
|
options = {
|
2021-04-12 05:25:37 +00:00
|
|
|
externalModules = mkOption {
|
2021-04-12 15:42:22 +00:00
|
|
|
type = pathToListOf moduleType;
|
2021-04-12 03:01:13 +00:00
|
|
|
default = [ ];
|
|
|
|
description = ''
|
2021-04-22 02:44:08 +00:00
|
|
|
The configuration for this host
|
2021-04-12 03:01:13 +00:00
|
|
|
'';
|
|
|
|
};
|
2021-03-26 18:57:24 +00:00
|
|
|
};
|
2021-04-12 03:01:13 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
# Home-manager's configs get exported automatically from nixos.hosts
|
2021-04-22 02:44:08 +00:00
|
|
|
# So there is no need for a host options in the home namespace
|
2021-04-12 03:01:13 +00:00
|
|
|
# This is only needed for nixos
|
2021-04-22 02:44:08 +00:00
|
|
|
includeHostsModule = { name, ... }: {
|
2021-04-12 03:01:13 +00:00
|
|
|
options = with types; {
|
2021-04-22 02:44:08 +00:00
|
|
|
hostDefaults = mkOption {
|
|
|
|
type = submodule [ hostModule externalModulesModule ];
|
2021-04-12 03:01:13 +00:00
|
|
|
default = { };
|
|
|
|
description = ''
|
2021-04-22 02:44:08 +00:00
|
|
|
Defaults for all hosts.
|
|
|
|
the modules passed under hostDefaults will be exported
|
2021-04-12 15:42:22 +00:00
|
|
|
to the '${name}Modules' flake output.
|
2021-04-22 02:44:08 +00:00
|
|
|
They will also be added to all hosts.
|
2021-04-12 03:01:13 +00:00
|
|
|
'';
|
|
|
|
};
|
2021-04-22 02:44:08 +00:00
|
|
|
hosts = mkOption {
|
|
|
|
type = attrsOf (submodule hostModule);
|
2021-04-12 03:01:13 +00:00
|
|
|
default = { };
|
|
|
|
description = ''
|
|
|
|
configurations to include in the ${name}Configurations output
|
|
|
|
'';
|
|
|
|
};
|
2021-03-26 18:57:24 +00:00
|
|
|
};
|
2021-04-12 03:01:13 +00:00
|
|
|
};
|
|
|
|
|
2021-04-12 15:42:22 +00:00
|
|
|
# profiles and suites - which are profile collections
|
|
|
|
profilesModule = { name, ... }: {
|
2021-04-12 03:01:13 +00:00
|
|
|
options = with types; {
|
|
|
|
profiles = mkOption {
|
2021-04-12 15:42:22 +00:00
|
|
|
type = coercedListOf path;
|
|
|
|
default = [ ];
|
|
|
|
apply = list:
|
|
|
|
# Merge a list of profiles to one set
|
|
|
|
let profileList = map (x: os.mkProfileAttrs (toString x)) list; in
|
|
|
|
foldl (a: b: a // b) { } profileList;
|
2021-04-12 03:01:13 +00:00
|
|
|
description = "path to profiles folder that can be collected into suites";
|
|
|
|
};
|
|
|
|
suites = mkOption {
|
|
|
|
type = pathTo (functionTo attrs);
|
|
|
|
default = _: { };
|
|
|
|
apply = suites: os.mkSuites {
|
2021-03-26 18:57:24 +00:00
|
|
|
inherit suites;
|
2021-04-12 03:01:13 +00:00
|
|
|
inherit (config) profiles;
|
2021-03-26 18:57:24 +00:00
|
|
|
};
|
|
|
|
description = ''
|
2021-04-12 03:01:13 +00:00
|
|
|
Function with the input of 'profiles' that returns an attribute set
|
|
|
|
with the suites for this config system.
|
|
|
|
These can be accessed through the 'suites' special argument.
|
2021-03-26 18:57:24 +00:00
|
|
|
'';
|
|
|
|
};
|
2021-04-12 03:01:13 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
in
|
|
|
|
{
|
|
|
|
options = with types; {
|
|
|
|
self = mkOption {
|
|
|
|
type = flakeType;
|
|
|
|
description = "The flake to create the devos outputs for";
|
|
|
|
};
|
|
|
|
supportedSystems = mkOption {
|
|
|
|
type = listOf str;
|
2021-04-18 01:56:24 +00:00
|
|
|
default = lib.defaultSystems;
|
2021-03-26 18:57:24 +00:00
|
|
|
description = ''
|
2021-04-12 03:01:13 +00:00
|
|
|
The systems supported by this flake
|
2021-03-26 18:57:24 +00:00
|
|
|
'';
|
|
|
|
};
|
2021-04-12 03:01:13 +00:00
|
|
|
channels =
|
2021-03-26 18:57:24 +00:00
|
|
|
let
|
2021-04-12 03:01:13 +00:00
|
|
|
default = {
|
|
|
|
nixpkgs = {
|
2021-04-19 03:29:28 +00:00
|
|
|
input = userFlakeNixOS;
|
2021-04-12 03:01:13 +00:00
|
|
|
};
|
2021-03-26 18:57:24 +00:00
|
|
|
};
|
|
|
|
in
|
|
|
|
mkOption {
|
2021-04-12 03:01:13 +00:00
|
|
|
type = attrsOf (submodule channelsModule);
|
|
|
|
inherit default;
|
|
|
|
apply = x: default // x;
|
2021-03-26 18:57:24 +00:00
|
|
|
description = ''
|
2021-04-12 03:01:13 +00:00
|
|
|
nixpkgs channels to create
|
2021-03-26 18:57:24 +00:00
|
|
|
'';
|
|
|
|
};
|
2021-04-22 02:44:08 +00:00
|
|
|
os = mkOption {
|
|
|
|
type = submodule [ includeHostsModule importsModule ];
|
2021-04-12 03:01:13 +00:00
|
|
|
default = { };
|
2021-03-26 18:57:24 +00:00
|
|
|
description = ''
|
2021-04-12 03:01:13 +00:00
|
|
|
hosts, modules, suites, and profiles for nixos
|
2021-03-26 18:57:24 +00:00
|
|
|
'';
|
|
|
|
};
|
2021-04-12 03:01:13 +00:00
|
|
|
home = mkOption {
|
|
|
|
type = submodule importsModule;
|
|
|
|
default = { };
|
|
|
|
description = ''
|
|
|
|
hosts, modules, suites, and profiles for home-manager
|
|
|
|
'';
|
2021-03-26 18:57:24 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
in
|
2021-04-02 02:10:24 +00:00
|
|
|
lib.evalModules {
|
2021-04-10 01:22:08 +00:00
|
|
|
modules = [ argOpts args ];
|
|
|
|
}
|