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, ... }: { config, lib, pkgs, ... }:
let let cfg = config.my.profiles.development;
cfg = config.my.profiles.development; in {
in {
options.my.profiles.development = with lib; { options.my.profiles.development = with lib; {
enable = mkEnableOption "Development Tools"; enable = mkEnableOption "Development Tools";
@@ -12,19 +8,10 @@ let
config = lib.mkIf cfg.enable { config = lib.mkIf cfg.enable {
users.users.finn.packages = with pkgs; [ users.users.finn.packages = with pkgs; [
google-chrome google-chrome
vscode vscode
neovim neovim
jetbrains.idea-ultimate jetbrains.idea-ultimate
(python3.withPackages ( ];
ps: with ps; [ };
matplotlib }
numpy
pandas
tqdm # progressbar in pandas
wheel # python development
helium
]
))
};
}