From a27b3ffdd55bd7ffc972c5c377dd996c25d9d9d4 Mon Sep 17 00:00:00 2001 From: punkfairie Date: Sun, 25 May 2025 20:31:50 -0700 Subject: [PATCH] chore: remove unused options --- snowflake/modules/home/options/isDesktop/default.nix | 7 ------- snowflake/modules/home/options/isServer/default.nix | 7 ------- 2 files changed, 14 deletions(-) delete mode 100644 snowflake/modules/home/options/isDesktop/default.nix delete mode 100644 snowflake/modules/home/options/isServer/default.nix 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."; - }; -}