renamed option

This commit is contained in:
Jakub Kropáček 2024-10-18 16:17:05 +02:00
parent 5c0cc64f3c
commit 40dd69b4a3
3 changed files with 5 additions and 4 deletions

View file

@ -35,7 +35,7 @@
}; };
python = { python = {
enable = true; enable = true;
install-older = true; install-additional = true;
}; };
cli = { cli = {
enable = true; enable = true;

View file

@ -18,7 +18,7 @@
enable = true; enable = true;
install-pycharm = true; install-pycharm = true;
}; };
python.install-older = true; python.install-additional = true;
}; };
home-manager = { home-manager = {

View file

@ -14,7 +14,7 @@ in
default = false; default = false;
example = true; example = true;
}; };
install-older = lib.mkOption { install-additional = lib.mkOption {
type = lib.types.bool; type = lib.types.bool;
default = true; default = true;
example = true; example = true;
@ -30,7 +30,8 @@ in
pre-commit pre-commit
uv uv
] ]
++ lib.optionals cfg.install-older [ ++ lib.optionals cfg.install-additional [
python313
python311 python311
python310 python310
]; ];