2021-04-19 00:35:11 +00:00
|
|
|
{ userFlakeSelf, lib, nixpkgs, utils, ... }:
|
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-03-26 18:57:24 +00:00
|
|
|
moduleType = with types; 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 03:01:13 +00:00
|
|
|
overlayType = types.anything // {
|
|
|
|
check = builtins.isFunction;
|
|
|
|
description = "valid Nixpkgs overlay";
|
|
|
|
};
|
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";
|
|
|
|
};
|
|
|
|
|
|
|
|
# Applys maybeImport during merge and before check
|
|
|
|
# To simplify apply keys and improve type checking
|
|
|
|
pathTo = elemType: mkOptionType {
|
|
|
|
name = "pathTo";
|
|
|
|
description = "path that evaluates to a(n) ${elemType.name}";
|
|
|
|
check = x: elemType.check (maybeImport x);
|
|
|
|
merge = loc: defs:
|
|
|
|
(mergeDefinitions loc elemType (map
|
|
|
|
(x: {
|
|
|
|
inherit (x) file;
|
|
|
|
value = maybeImport x.value;
|
|
|
|
})
|
|
|
|
defs)).mergedValue;
|
|
|
|
getSubOptions = elemType.getSubOptions;
|
|
|
|
getSubModules = elemType.getSubModules;
|
|
|
|
substSubModules = m: pathTo (elemType.substSubModules m);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/* Submodules needed for API containers */
|
|
|
|
|
|
|
|
channelsModule = {
|
|
|
|
options = with types; {
|
|
|
|
input = mkOption {
|
|
|
|
type = flakeType;
|
2021-04-18 01:46:20 +00:00
|
|
|
default = nixpkgs;
|
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 {
|
|
|
|
type = pathTo (listOf overlayType);
|
|
|
|
default = [ ];
|
|
|
|
description = ''
|
|
|
|
overlays to apply to this channel
|
|
|
|
these will get exported under the 'overlays' flake output as <channel>/<name>
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
externalOverlays = mkOption {
|
|
|
|
type = pathTo (listOf overlayType);
|
|
|
|
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-12 05:25:37 +00:00
|
|
|
configModule = {
|
2021-04-12 03:01:13 +00:00
|
|
|
options = with types; {
|
|
|
|
system = mkOption {
|
|
|
|
type = systemType;
|
|
|
|
default = "x86_64-linux";
|
|
|
|
description = ''
|
|
|
|
system for this config
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
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 = ''
|
|
|
|
Channel this config should follow
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
modules = mkOption {
|
|
|
|
type = pathTo moduleType;
|
|
|
|
default = [ ];
|
|
|
|
description = ''
|
|
|
|
The configuration for this config
|
|
|
|
'';
|
|
|
|
};
|
2021-04-12 05:25:37 +00:00
|
|
|
externalModules = mkOption {
|
2021-04-12 03:01:13 +00:00
|
|
|
type = pathTo moduleType;
|
|
|
|
default = [ ];
|
|
|
|
description = ''
|
|
|
|
The configuration for this config
|
|
|
|
'';
|
|
|
|
};
|
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
|
|
|
|
# So there is no need for a config options in the home namespace
|
|
|
|
# This is only needed for nixos
|
2021-04-12 05:25:37 +00:00
|
|
|
includeConfigsModule = { name, ... }: {
|
2021-04-12 03:01:13 +00:00
|
|
|
options = with types; {
|
|
|
|
configDefaults = mkOption {
|
|
|
|
type = submodule configModule;
|
|
|
|
default = { };
|
|
|
|
description = ''
|
|
|
|
defaults for all configs
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
configs = mkOption {
|
|
|
|
type = pathTo (attrsOf (submodule configModule));
|
|
|
|
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
|
|
|
};
|
|
|
|
|
|
|
|
# Options to import: modules, profiles, suites
|
|
|
|
importsModule = { name, ... }: {
|
|
|
|
options = with types; {
|
|
|
|
modules = mkOption {
|
|
|
|
type = pathTo (listOf moduleType);
|
|
|
|
default = [ ];
|
2021-04-18 01:35:05 +00:00
|
|
|
apply = lib.pathsToImportedAttrs;
|
2021-04-12 03:01:13 +00:00
|
|
|
description = ''
|
|
|
|
list of modules to include in confgurations and export in '${name}Modules' output
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
externalModules = mkOption {
|
|
|
|
type = pathTo (listOf moduleType);
|
|
|
|
default = [ ];
|
2021-04-18 01:35:05 +00:00
|
|
|
apply = lib.pathsToImportedAttrs;
|
2021-04-12 03:01:13 +00:00
|
|
|
description = ''
|
|
|
|
list of modules to include in confguration but these are not exported to the '${name}Modules' output
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
profiles = mkOption {
|
|
|
|
type = path;
|
2021-04-19 00:35:11 +00:00
|
|
|
default = "${userFlakeSelf}/profiles";
|
|
|
|
defaultText = "\${userFlakeSelf}/profiles";
|
2021-04-12 03:01:13 +00:00
|
|
|
apply = x: os.mkProfileAttrs (toString x);
|
|
|
|
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;
|
|
|
|
default = utils.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-18 01:46:20 +00:00
|
|
|
input = nixpkgs;
|
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-12 03:01:13 +00:00
|
|
|
nixos = mkOption {
|
|
|
|
type = submodule [ includeConfigsModule importsModule ];
|
|
|
|
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 ];
|
|
|
|
}
|