Files
nix/modules/home/develop.nix
2025-04-30 10:18:19 +08:00

23 lines
295 B
Nix

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