We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 18eb2db commit 06f5c3eCopy full SHA for 06f5c3e
users/refnode/common/optional/golang.nix
@@ -0,0 +1,12 @@
1
+{ pkgs, ... }:
2
+
3
+{
4
+ # Go development tools
5
6
+ home.packages = with pkgs; [
7
+ # Go toolchain
8
+ unstable.go
9
+ unstable.gopls
10
+ unstable.goreleaser
11
+ ];
12
+}
users/refnode/default.nix
@@ -6,6 +6,7 @@
./common/optional/rust.nix
./common/optional/mailtools.nix
./common/optional/backup.nix
+ ./common/optional/golang.nix
];
# specify my home-manager configs
@@ -76,9 +77,6 @@
76
77
unstable.graphviz
78
unstable.plantuml-c4
79
unstable.ffmpeg_7
- unstable.go
80
- unstable.gopls
81
- unstable.goreleaser
82
unstable.nodejs_22
83
unstable.yubikey-manager
84
unstable.platformio
0 commit comments