fix: Development Env

This commit is contained in:
2025-01-28 23:45:58 +01:00
parent 514ee3c137
commit 2b13f15711
+7 -20
View File
@@ -1,10 +1,6 @@
{ config, lib, pkgs, ... }:
let
cfg = config.my.profiles.development;
in {
let cfg = config.my.profiles.development;
in {
options.my.profiles.development = with lib; {
enable = mkEnableOption "Development Tools";
@@ -12,19 +8,10 @@ let
config = lib.mkIf cfg.enable {
users.users.finn.packages = with pkgs; [
google-chrome
google-chrome
vscode
neovim
neovim
jetbrains.idea-ultimate
(python3.withPackages (
ps: with ps; [
matplotlib
numpy
pandas
tqdm # progressbar in pandas
wheel # python development
helium
]
))
};
}
];
};
}