Files
nix/modules/home/develop.nix

17 lines
157 B
Nix
Raw Normal View History

2025-04-21 14:21:37 +08:00
{ pkgs, ... }:
{
2025-04-21 22:51:05 +08:00
imports = [
./vscode
];
2025-04-21 14:21:37 +08:00
home = {
packages = with pkgs; [
dbeaver-bin
go
nodejs
yarn
];
};
}