24 lines
588 B
Nix
24 lines
588 B
Nix
|
{
|
||
|
lib,
|
||
|
config,
|
||
|
...
|
||
|
}: let
|
||
|
inherit (lib) mkEnableOption;
|
||
|
in {
|
||
|
options = {
|
||
|
local.profiles.server.enable = mkEnableOption "the server profile";
|
||
|
};
|
||
|
|
||
|
config.assertions = lib.mkIf config.local.profiles.server.enable [
|
||
|
{
|
||
|
assertion = !config.local.profiles.desktop.enable;
|
||
|
message = "The server profile cannot be enabled if `local.profiles.desktop.enable` is set to true.";
|
||
|
}
|
||
|
|
||
|
{
|
||
|
assertion = !config.local.profiles.gaming.enable;
|
||
|
message = "The server profile cannot be enabled if `local.profiles.gaming.enable` is set to true.";
|
||
|
}
|
||
|
];
|
||
|
}
|