mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 08:43:00 +00:00
16 lines
259 B
Nix
16 lines
259 B
Nix
{
|
|
pkgs,
|
|
config,
|
|
...
|
|
}: {
|
|
home.packages = with pkgs; [
|
|
go
|
|
gopls
|
|
];
|
|
home.sessionVariables = {
|
|
GOPATH = "${config.xdg.dataHome}/go";
|
|
};
|
|
programs.vscode.profiles.default.extensions = with pkgs.vscode-extensions; [
|
|
golang.go
|
|
];
|
|
}
|