Integrate hummelberg desktop configuration
This commit is contained in:
parent
e8f2a29484
commit
81eb15d52a
22 changed files with 824 additions and 25 deletions
30
defaults/development-tools/default.nix
Normal file
30
defaults/development-tools/default.nix
Normal file
|
@ -0,0 +1,30 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
virtualisation = { # TODO: This should probably be somewhere else.
|
||||
docker.enable = true;
|
||||
libvirtd.enable = true;
|
||||
};
|
||||
|
||||
environment.systemPackages = with pkgs;
|
||||
[
|
||||
vscodium
|
||||
jetbrains.webstorm
|
||||
jetbrains.pycharm-professional
|
||||
jetbrains.idea-ultimate
|
||||
android-studio
|
||||
#umlet
|
||||
#hugo # TODO: Is this the extended version?
|
||||
#kubernetes-helm # TODO: is this the client?
|
||||
#wireshark # sslscan aircrack-ng # Network
|
||||
pipenv # Python
|
||||
yubikey-manager # cracklib genisoimage # Security
|
||||
gitlab-runner
|
||||
] ++ [ # Virtualisation, Docker & Kubernetes # TODO: MOoe
|
||||
virt-manager
|
||||
docker-compose
|
||||
kubectl
|
||||
vagrant # TODO: Supports libvirtd?
|
||||
];
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue