pkgs: Add Pycharm to chest

This commit is contained in:
Sweetbread 2025-01-10 21:44:59 +03:00
parent 6f2c1bed14
commit bebf7e8b6d

View File

@ -1,9 +1,9 @@
{ pkgs, ... }: { { pkgs, pkgs-stable, ... }: {
imports = [ imports = [
../../modules/bundle.nix ../../modules/bundle.nix
../../packages/desktop.nix
../../packages/art.nix ../../packages/art.nix
../../packages/desktop.nix
./modules/git.nix ./modules/git.nix
./modules/hyprland.nix ./modules/hyprland.nix
@ -19,6 +19,8 @@
packages = with pkgs; [ packages = with pkgs; [
nautilus nautilus
]; ] ++ (with pkgs-stable; [
jetbrains.pycharm-community
]);
}; };
} }