From d74b1eeb9b6b32631052e9c5270d74e54613db7d Mon Sep 17 00:00:00 2001 From: UGA Innovation Factory Date: Wed, 10 Dec 2025 10:37:16 -0500 Subject: [PATCH] enable python by default --- sw/python.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/sw/python.nix b/sw/python.nix index 1a1ad7d..0dc680f 100644 --- a/sw/python.nix +++ b/sw/python.nix @@ -19,8 +19,9 @@ let in { options.modules.sw.python = { - enable = mkEnableOption "Python development tools (pixi, uv)"; - default = true; + enable = mkEnableOption "Python development tools (pixi, uv)" // { + default = true; + }; }; config = mkIf cfg.enable {