renamed option
This commit is contained in:
parent
5c0cc64f3c
commit
40dd69b4a3
3 changed files with 5 additions and 4 deletions
|
@ -35,7 +35,7 @@
|
||||||
};
|
};
|
||||||
python = {
|
python = {
|
||||||
enable = true;
|
enable = true;
|
||||||
install-older = true;
|
install-additional = true;
|
||||||
};
|
};
|
||||||
cli = {
|
cli = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
|
@ -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 = {
|
||||||
|
|
|
@ -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
|
||||||
];
|
];
|
||||||
|
|
Loading…
Reference in a new issue