aboutsummaryrefslogtreecommitdiff
path: root/nix/users/fcuny/go.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nix/users/fcuny/go.nix')
-rw-r--r--nix/users/fcuny/go.nix21
1 files changed, 0 insertions, 21 deletions
diff --git a/nix/users/fcuny/go.nix b/nix/users/fcuny/go.nix
deleted file mode 100644
index c6c9cf6..0000000
--- a/nix/users/fcuny/go.nix
+++ /dev/null
@@ -1,21 +0,0 @@
-{ config, pkgs, ... }:
-{
- home.packages = with pkgs; [
- go-tools
- golangci-lint
- gopls
- delve
- ];
-
- programs.go = {
- enable = true;
- goPath = ".local/share/pkg.go";
- goBin = ".local/bin.go";
- goPrivate = [
- "github.rbx.com/*"
- "github.com/fcuny/*"
- ];
- };
-
- home.sessionPath = [ config.home.sessionVariables.GOBIN ];
-}