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