services: migrate to nilla
This commit is contained in:
parent
0d987e28f1
commit
c523ebe44b
3 changed files with 103 additions and 1 deletions
|
@ -1,3 +1,6 @@
|
||||||
{
|
{
|
||||||
includes = [ ./builders ];
|
includes = [
|
||||||
|
./builders
|
||||||
|
./services.nix
|
||||||
|
];
|
||||||
}
|
}
|
||||||
|
|
95
modules/nilla/services.nix
Normal file
95
modules/nilla/services.nix
Normal file
|
@ -0,0 +1,95 @@
|
||||||
|
{ lib, config }:
|
||||||
|
let
|
||||||
|
inherit (builtins)
|
||||||
|
attrNames
|
||||||
|
attrValues
|
||||||
|
concatStringsSep
|
||||||
|
mapAttrs
|
||||||
|
foldl'
|
||||||
|
groupBy
|
||||||
|
length
|
||||||
|
;
|
||||||
|
serviceModule =
|
||||||
|
{ config }:
|
||||||
|
{
|
||||||
|
options = {
|
||||||
|
host = lib.options.create {
|
||||||
|
type = lib.types.str;
|
||||||
|
};
|
||||||
|
ports = lib.options.create {
|
||||||
|
type = lib.types.list.of lib.types.port;
|
||||||
|
default.value = [ ];
|
||||||
|
};
|
||||||
|
hosts = lib.options.create {
|
||||||
|
type = lib.types.list.of lib.types.str;
|
||||||
|
default.value = [ config.host ];
|
||||||
|
};
|
||||||
|
module = lib.options.create {
|
||||||
|
type = lib.types.raw;
|
||||||
|
default.value = { };
|
||||||
|
};
|
||||||
|
hostModule = lib.options.create {
|
||||||
|
type = lib.types.attrs.of lib.types.raw;
|
||||||
|
default.value = { };
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
moduleToHostConfigs =
|
||||||
|
cfg:
|
||||||
|
lib.attrs.generate cfg.hosts (host: {
|
||||||
|
imports = [
|
||||||
|
cfg.module
|
||||||
|
(cfg.hostModule.${host} or { })
|
||||||
|
];
|
||||||
|
});
|
||||||
|
|
||||||
|
maybeGetPreviousConfigs = acc: host: (acc.${host} or { imports = [ ]; }).imports;
|
||||||
|
|
||||||
|
# Copied from nixpkgs/lib/lists.nix
|
||||||
|
groupBy' =
|
||||||
|
op: nul: pred: lst:
|
||||||
|
mapAttrs (_name: foldl' op nul) (groupBy pred lst);
|
||||||
|
duplicatePorts = lib.fp.pipe [
|
||||||
|
attrValues
|
||||||
|
(map (cfg: cfg.ports))
|
||||||
|
lib.lists.flatten
|
||||||
|
(groupBy' (cnt: _: cnt + 1) 0 toString)
|
||||||
|
(lib.attrs.filter (_: cnt: cnt > 1))
|
||||||
|
attrNames
|
||||||
|
] config.services;
|
||||||
|
in
|
||||||
|
{
|
||||||
|
options.services = lib.options.create {
|
||||||
|
type = lib.types.attrs.of (lib.types.submodule serviceModule);
|
||||||
|
default.value = { };
|
||||||
|
};
|
||||||
|
|
||||||
|
options.extraHostConfigs = lib.options.create {
|
||||||
|
type = lib.types.attrs.of lib.types.raw;
|
||||||
|
writable = false;
|
||||||
|
default.value = lib.fp.pipe [
|
||||||
|
attrValues
|
||||||
|
(foldl' (
|
||||||
|
acc: cfg:
|
||||||
|
acc
|
||||||
|
// mapAttrs (host: c: {
|
||||||
|
imports = c.imports ++ (maybeGetPreviousConfigs acc host);
|
||||||
|
}) (moduleToHostConfigs cfg)
|
||||||
|
) { })
|
||||||
|
] config.services;
|
||||||
|
};
|
||||||
|
|
||||||
|
config.assertions = [
|
||||||
|
{
|
||||||
|
assertion = duplicatePorts == [ ];
|
||||||
|
message =
|
||||||
|
let
|
||||||
|
plural = length duplicatePorts > 1;
|
||||||
|
in
|
||||||
|
"\nBad service config:\nThe following port${if plural then "s" else ""} ${
|
||||||
|
if plural then "were" else "was"
|
||||||
|
} declared multiple times: ${concatStringsSep ", " duplicatePorts}";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
}
|
|
@ -8,6 +8,10 @@
|
||||||
./modules/nilla
|
./modules/nilla
|
||||||
./pkgs
|
./pkgs
|
||||||
./wrappers
|
./wrappers
|
||||||
|
|
||||||
|
./services/attic.nix
|
||||||
|
./services/forgejo-runner.nix
|
||||||
|
./services/forgejo.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
config.inputs = builtins.mapAttrs (_: src: {
|
config.inputs = builtins.mapAttrs (_: src: {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue