nixos/modules/dev/python.nix

18 lines
303 B
Nix
Raw Normal View History

2023-07-09 15:44:29 +04:00
{ 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
python310Packages.pip
];
};
}