From e21c901e94f87f7884b5064505c6a6b55d60e86d Mon Sep 17 00:00:00 2001 From: John Lancaster <32917998+jsl12@users.noreply.github.com> Date: Sun, 6 Jul 2025 21:42:40 -0500 Subject: [PATCH] moved options together --- nixosModules/options.nix | 37 ++++++++++++++++++------------------- 1 file changed, 18 insertions(+), 19 deletions(-) diff --git a/nixosModules/options.nix b/nixosModules/options.nix index ec7706e..4ea1af9 100644 --- a/nixosModules/options.nix +++ b/nixosModules/options.nix @@ -60,24 +60,23 @@ description = "Whether to enable docker stuff"; }; - options.graphical.discord = lib.mkOption { - type = lib.types.bool; - default = false; - }; - - options.graphical.ghostty = lib.mkOption { - type = lib.types.bool; - default = false; - }; - - options.graphical.steam = lib.mkOption { - type = lib.types.bool; - default = false; - description = "Whether this system has Steam installed"; - }; - - options.graphical.vscode = lib.mkOption { - type = lib.types.bool; - default = false; + options.graphical = { + discord = lib.mkOption { + type = lib.types.bool; + default = false; + }; + ghostty = lib.mkOption { + type = lib.types.bool; + default = false; + }; + steam = lib.mkOption { + type = lib.types.bool; + default = false; + description = "Whether this system has Steam installed"; + }; + vscode = lib.mkOption { + type = lib.types.bool; + default = false; + }; }; }