diff options
| -rw-r--r-- | modules/darwin/homebrew.nix | 3 | ||||
| -rw-r--r-- | modules/nixos/default.nix | 6 |
2 files changed, 9 insertions, 0 deletions
diff --git a/modules/darwin/homebrew.nix b/modules/darwin/homebrew.nix index 2434d7d..ef275d7 100644 --- a/modules/darwin/homebrew.nix +++ b/modules/darwin/homebrew.nix @@ -16,6 +16,7 @@ "go-task/tap" "tursodatabase/tap" "simenandre/tools" + "dinacomputer/tap" ]; brews = [ @@ -93,6 +94,7 @@ "talosctl" "tektoncd-cli" "runpodctl" + "dina" # Container tools "docker" @@ -110,6 +112,7 @@ # Databases and database tools "turso" "libpq" + "sqlc" # Terminal tools "pv" diff --git a/modules/nixos/default.nix b/modules/nixos/default.nix index 8542ae0..d4edd66 100644 --- a/modules/nixos/default.nix +++ b/modules/nixos/default.nix @@ -33,6 +33,12 @@ }; programs.zsh.enable = true; + programs.go.enable = true; + + home.sessionPath = [ "${config.programs.go.env.GOPATH}/bin" ]; + + + # Core system packages environment.systemPackages = with pkgs; [ curl |
