nixos/modules/dev/python.nix

23 lines
328 B
Nix

{
outputs,
options,
config,
lib,
pkgs,
...
}:
with lib; let
cfg = config.modules.dev.python;
in {
options.modules.dev.python = {
enable = mkEnableOption false;
};
config = mkIf cfg.enable {
users.users.sako.packages = with pkgs; [
python3
black
python310Packages.pip
];
};
}