forked from Fachschaft/nixConfig
Compare commits
4 commits
df5e743d3f
...
55ba2c9122
Author | SHA1 | Date | |
---|---|---|---|
55ba2c9122 | |||
80e78279b2 | |||
9b57029006 | |||
42c9bf1b1d |
1 changed files with 3 additions and 3 deletions
|
@ -11,16 +11,16 @@
|
||||||
mkEnableOption
|
mkEnableOption
|
||||||
mkOption
|
mkOption
|
||||||
;
|
;
|
||||||
inherit (lib.types) nonEmptyStr;
|
inherit (lib.types) str;
|
||||||
cfg = config.services.mathebau-mailman;
|
cfg = config.services.mathebau-mailman;
|
||||||
in {
|
in {
|
||||||
options.services.mathebau-mailman = {
|
options.services.mathebau-mailman = {
|
||||||
enable = mkEnableOption "mathebau mailman service";
|
enable = mkEnableOption "mathebau mailman service";
|
||||||
hostName = mkOption {
|
hostName = mkOption {
|
||||||
type = nonEmptyStr;
|
type = str;
|
||||||
};
|
};
|
||||||
siteOwner = mkOption {
|
siteOwner = mkOption {
|
||||||
type = nonEmptyStr;
|
type = str;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue