feat(nixos): Add marleyos.isServer option

This commit is contained in:
punkfairie 2025-02-17 20:00:29 -08:00
parent f282402f36
commit 1e4014a2c1
Signed by: punkfairie
GPG key ID: B3C5488E9A1A7CA6

View file

@ -0,0 +1,7 @@
{lib, ...}: {
options.marleyos.isServer = lib.mkOption {
type = with lib.types; bool;
default = false;
description = "Whether this machine is a server.";
};
}