Files
nix/modules/home/develop.nix

25 lines
343 B
Nix
Raw Permalink Normal View History

2025-04-30 10:18:19 +08:00
{ config, pkgs, ... }:
2025-04-25 23:10:55 +08:00
{
imports = [
];
2025-04-30 10:18:19 +08:00
2025-04-25 23:10:55 +08:00
home = {
packages = with pkgs.unstable; [
dbeaver-bin
go
nodejs
yarn
2025-05-29 18:44:22 +08:00
sqlite
jq
# steam-run
# jetbrains.idea-community # use prebuild binary
2025-04-25 23:10:55 +08:00
];
2025-04-30 10:18:19 +08:00
sessionVariables = {
GOPATH = "${config.home.homeDirectory}/data/go";
};
2025-04-25 23:10:55 +08:00
};
}