fix(home): Add isServer option

This commit is contained in:
punkfairie 2025-03-02 09:56:09 -08:00
parent 914b2b7ed0
commit fca113aeed
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.";
};
}