2022-09-06 17:16:31 +02:00
|
|
|
{ config, lib, ... }: with lib; {
|
2022-12-17 19:12:41 +01:00
|
|
|
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";
|
|
|
|
};
|
2022-04-19 16:39:09 +02:00
|
|
|
};
|
2023-09-01 10:42:22 +02:00
|
|
|
options.networking.rdns = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
default = networking.fqdn;
|
|
|
|
description = "The reverse dns record known to be set for this host.";
|
|
|
|
};
|
2022-04-19 16:39:09 +02:00
|
|
|
}
|