Added support for Pycharm and Python

This commit is contained in:
Tyler Kelley 2024-01-24 00:52:31 -06:00
parent 3865a0cd20
commit df95ecabf1
2 changed files with 9 additions and 3 deletions

View File

@ -9,7 +9,7 @@
#if [ -z "$DISPLAY" ] && [ "$XDG_VTNR" = 1 ]; then
# exec Hyprland
#fi
if [ -z $HOME/.bashrc-personal ]; then
if [ -f $HOME/.bashrc-personal ]; then
source $HOME/.bashrc-personal
fi
'';

View File

@ -1,6 +1,11 @@
{ pkgs, config, inputs, ... }:
{
let
my-python-packages = ps: with ps; [
pandas
requests
];
in {
# Allow unfree packages
nixpkgs.config.allowUnfree = true;
@ -11,7 +16,8 @@
v4l-utils ydotool wl-clipboard socat cowsay lsd
pkg-config meson hugo gnumake ninja go nodejs symbola
noto-fonts-color-emoji material-icons brightnessctl
toybox virt-viewer
toybox virt-viewer jetbrains.pycharm-community-bin
(pkgs.python3.withPackages my-python-packages)
];
programs.steam.gamescopeSession.enable = true;