diff --git a/modules/home/options/isServer/default.nix b/modules/home/options/isServer/default.nix new file mode 100644 index 0000000..f0d0259 --- /dev/null +++ b/modules/home/options/isServer/default.nix @@ -0,0 +1,7 @@ +{lib, ...}: { + options.marleyos.isServer = lib.mkOption { + type = with lib.types; bool; + default = false; + description = "Whether this machine is a server."; + }; +}