summary refs log tree commit diff
diff options
context:
space:
mode:
authorRory& <root@rory.gay>2026-06-01 13:05:18 +0200
committerRory& <root@rory.gay>2026-06-01 13:05:18 +0200
commit9124eaf32b68859bf3a1806ea399b71abb2bf1a6 (patch)
treea5fbcfdda7ce8017d18386a25a4fdd9dc4cab834
parentOops (diff)
downloadRory-Open-Architecture-9124eaf32b68859bf3a1806ea399b71abb2bf1a6.tar.xz
Go devenv HEAD master
-rw-r--r--host/Rory-desktop/configuration.nix1
-rw-r--r--modules/software-templates/devenv/go.nix17
2 files changed, 18 insertions, 0 deletions
diff --git a/host/Rory-desktop/configuration.nix b/host/Rory-desktop/configuration.nix

index 06f84c9..6f60d84 100644 --- a/host/Rory-desktop/configuration.nix +++ b/host/Rory-desktop/configuration.nix
@@ -19,6 +19,7 @@ args@{ ../../modules/software-templates/eid-mw.nix ../../modules/software-templates/devenv/dotnet.nix ../../modules/software-templates/devenv/javascript.nix + ../../modules/software-templates/devenv/go.nix ./services/nginx.nix ./services/postgres.nix diff --git a/modules/software-templates/devenv/go.nix b/modules/software-templates/devenv/go.nix new file mode 100644
index 0000000..bbce701 --- /dev/null +++ b/modules/software-templates/devenv/go.nix
@@ -0,0 +1,17 @@ +{ pkgs, nix-jetbrains-plugins, ... }: + +{ + environment.systemPackages = with nix-jetbrains-plugins.lib; [ + (buildIdeWithPlugins pkgs "goland" [ + "com.github.copilot" + "nix-idea" + # "visual-studio-keymap" + "String Manipulation" + ]) + pkgs.go + pkgs.gcc + ]; + environment.sessionVariables = { + DOTNET_CLI_TELEMETRY_OPTOUT = "1"; + }; +}