mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-10 06:59:41 +00:00
15 lines
214 B
Nix
15 lines
214 B
Nix
{
|
|
lib,
|
|
pkgs,
|
|
osConfig,
|
|
...
|
|
}: let
|
|
inherit (lib) mkIf;
|
|
|
|
cfg = osConfig.myOptions.home-manager.programs.coding.python;
|
|
in {
|
|
config = mkIf cfg.enable {
|
|
home.packages = with pkgs; [ pyright ];
|
|
};
|
|
}
|