26 lines
553 B
Nix
26 lines
553 B
Nix
|
{ config
|
||
|
, lib
|
||
|
, pkgs
|
||
|
, ...
|
||
|
}:
|
||
|
|
||
|
with lib;
|
||
|
let
|
||
|
cfg = config.my.programs.python;
|
||
|
in
|
||
|
{
|
||
|
options.my.programs.python = {
|
||
|
enable = mkEnableOption "python";
|
||
|
versions = mkOption {
|
||
|
default = [ "python310" ];
|
||
|
type = with types; listOf str;
|
||
|
example = [ "python39" ];
|
||
|
apply = versions: builtins.map (version: prev.${version}.withPackages (packages: with packages; [ black pyflakes isort nose pytest python-lsp-server ]));
|
||
|
};
|
||
|
};
|
||
|
|
||
|
config = mkIf cfg.enable {
|
||
|
home-manager.user.moritz.home.packages = cfg.versions;
|
||
|
};
|
||
|
}
|