Add pyyaml

This commit is contained in:
Jakob Lechner 2024-10-09 10:04:52 +02:00
parent 0fc2c18363
commit 1491636cb9

View file

@ -1,8 +1,10 @@
{ nixosConfig, lib, pkgs, ... }:
lib.mkIf nixosConfig.jalr.workstation.enable {
home.packages = with pkgs; [
python3
python3Packages.virtualenv
python3Packages.ipython
(python3.withPackages (pp: with pp; [
ipython
pyyaml
virtualenv
]))
];
}