move development packages around

This commit is contained in:
2025-01-16 15:42:01 +00:00
parent 33fdd4cb2b
commit 98b968b8bb
8 changed files with 35 additions and 7 deletions

View File

@@ -0,0 +1,11 @@
{ pkgs, ... }:
{
imports = [
./vscode.nix
./helix.nix
./dotnet.nix
./sql.nix
./games.nix
];
}

View File

@@ -8,7 +8,5 @@
])
jetbrains.rider
azure-cli
azuredatastudio
rustup
];
}

View File

@@ -0,0 +1,8 @@
{ pkgs, inputs, ... }:
{
home.packages = with pkgs;[
jetbrains.rider
inputs.nixpkgs-unstable.legacyPackages."${pkgs.system}".godot_4-mono
];
}

View File

@@ -0,0 +1,7 @@
{ pkgs, ... }:
{
home.packages = with pkgs;[
azuredatastudio
];
}