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