From fca113aeed6b56e99279c29b90a1c6a4e5ccff34 Mon Sep 17 00:00:00 2001 From: punkfairie Date: Sun, 2 Mar 2025 09:56:09 -0800 Subject: [PATCH] fix(home): Add isServer option --- modules/home/options/isServer/default.nix | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 modules/home/options/isServer/default.nix 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."; + }; +}