blob: c7069e307637964b60822b0a095803d0c59120e4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
{ 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 ]);
}
|