Files
nix/modules/home/develop.nix
2025-05-29 18:44:22 +08:00

25 lines
343 B
Nix

{ config, pkgs, ... }:
{
imports = [
];
home = {
packages = with pkgs.unstable; [
dbeaver-bin
go
nodejs
yarn
sqlite
jq
# steam-run
# jetbrains.idea-community # use prebuild binary
];
sessionVariables = {
GOPATH = "${config.home.homeDirectory}/data/go";
};
};
}