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 = {
enable = true;
install-older = true;
install-additional = true;
};
cli = {
enable = true;

View file

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

View file

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