From 67e763cb5f3154947590b97c6855d4ce03d7b448 Mon Sep 17 00:00:00 2001 From: UGA Innovation Factory Date: Wed, 10 Dec 2025 10:34:58 -0500 Subject: [PATCH] feat: Enable python dev environments by default --- sw/python.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sw/python.nix b/sw/python.nix index 3902f4e..0dc680f 100644 --- a/sw/python.nix +++ b/sw/python.nix @@ -19,7 +19,9 @@ let in { options.modules.sw.python = { - enable = mkEnableOption "Python development tools (pixi, uv)"; + enable = mkEnableOption "Python development tools (pixi, uv)" // { + default = true; + }; }; config = mkIf cfg.enable {