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