mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-nixos-config.git
synced 2024-11-06 00:43:11 +00:00
14 lines
283 B
Nix
14 lines
283 B
Nix
{ lib, ... }:
|
|
{
|
|
options.selfprivacy.modules.simple-nixos-mailserver = {
|
|
enable = lib.mkOption {
|
|
default = false;
|
|
type = with lib.types; nullOr bool;
|
|
};
|
|
location = lib.mkOption {
|
|
default = "sda1";
|
|
type = with lib.types; nullOr str;
|
|
};
|
|
};
|
|
}
|