Files
nix/modules/home/develop.nix

23 lines
295 B
Nix
Raw 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
steam-run
jetbrains.idea-community
];
2025-04-30 10:18:19 +08:00
sessionVariables = {
GOPATH = "${config.home.homeDirectory}/data/go";
};
2025-04-25 23:10:55 +08:00
};
}