marleyos/modules/nixos/options/isServer/default.nix

8 lines
175 B
Nix
Raw Normal View History

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