Skip to content

Commit

Permalink
feat(ide): added a new database tools in SQL ide
Browse files Browse the repository at this point in the history
- added mysql workbranch
- added pgadmin
- added mongo-compose
Also, I installed dotnet ide cause in the nearest future I have a one
project which will be written in C#
  • Loading branch information
Wittano committed Jan 16, 2025
1 parent 4be47fd commit 3dc1af6
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 3 deletions.
21 changes: 20 additions & 1 deletion home-manager/ide.nix
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,26 @@ let
dotnet.package = rider;
rust.package = rust-rover;
jvm.package = idea-ultimate;
sql.package = datagrip;
sql = {
package = datagrip;
extraConfig = {
home.packages = with pkgs; [ mysql-workbench mongodb-compass ];

systemd.user.services.pgadmin = rec {
Unit = {
Description = "pgadmin - web application to manage Postgres database";
Requires = [ "graphical-session.target" ];
After = [ "network.target" ];
};

Service = {
ExecStart = meta.getExe pkgs.pgadmin4-desktopmode;
};

Install.WantedBy = Unit.Requires;
};
};
};
web.package = webstorm;
andorid.package = unstable.andorid-studio;
haskell.extraConfig = fork.extraConfig;
Expand Down
3 changes: 1 addition & 2 deletions hosts/common.nix
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ let
commonHomeManager
{
programs = {
jetbrains.ides = [ "go" "fork" "python" "cpp" "elixir" "haskell" ];
jetbrains.ides = [ "go" "fork" "python" "cpp" "elixir" "haskell" "sql" "dotnet" ];
tmux.wittano.enable = true;
fish.shellAliases = {

Expand Down Expand Up @@ -137,7 +137,6 @@ let
logseq
vscodium # VS code
insomnia # REST API Client
unstable.figma-linux # Figma

obs-studio
];
Expand Down

0 comments on commit 3dc1af6

Please sign in to comment.