blob: c7069e307637964b60822b0a095803d0c59120e4 (
plain) (
tree)
|
|
{ pkgs, lib, ... }:
let cfg = config.my.home.python;
in {
options.my.home.python = with lib.my; {
enable = mkEnableOption "python configuration";
};
config.home.packages = with pkgs; lib.mkIf cfg.enable ([ python310 ]);
}
|