mirror of
https://gitlab.com/Zaney/zaneyos.git
synced 2024-12-02 03:23:08 +01:00
12 lines
248 B
Nix
12 lines
248 B
Nix
{ pkgs, config, lib, ... }:
|
|
|
|
let
|
|
inherit (import ../../options.nix) python;
|
|
in lib.mkIf (python == true) {
|
|
environment.systemPackages = with pkgs; [
|
|
jetbrains.pycharm-community-bin
|
|
(pkgs.python3.withPackages my-python-packages)
|
|
];
|
|
|
|
}
|