8 lines
175 B
Nix
8 lines
175 B
Nix
|
{lib, ...}: {
|
||
|
options.marleyos.isServer = lib.mkOption {
|
||
|
type = with lib.types; bool;
|
||
|
default = false;
|
||
|
description = "Whether this machine is a server.";
|
||
|
};
|
||
|
}
|