adding option for domain

This commit is contained in:
revol-xut 2022-12-17 19:12:41 +01:00
parent 09d8697f7a
commit 141bdb9737
No known key found for this signature in database
GPG key ID: 4F56FF7759627D07
6 changed files with 21 additions and 18 deletions

View file

@ -1,7 +1,14 @@
{ config, lib, ... }: with lib; {
options.fsr.enable_office_bloat = mkOption {
type = types.bool;
default = false;
description = "install heavy office bloat like texlive, okular, ...";
options.fsr = {
enable_office_bloat = mkOption {
type = types.bool;
default = false;
description = "install heavy office bloat like texlive, okular, ...";
};
domain = mkOption {
type = types.str;
default = "ifsr.de";
description = "under which top level domain the services should run";
};
};
}