diff options
| author | Simen A. W. Olsen <hello@simenandre.no> | 2026-03-23 08:48:59 +0100 |
|---|---|---|
| committer | Simen A. W. Olsen <hello@simenandre.no> | 2026-03-23 08:49:11 +0100 |
| commit | a71d60fe8063869c3150a49eab9c29c5eb4dd86e (patch) | |
| tree | 7a2c3ef60dbf94366d1ee2dc65be0f31cd0d275d | |
| parent | c5ea484b372ec3217abe8823425a41d1a651dc69 (diff) | |
| download | dotfiles-a71d60fe8063869c3150a49eab9c29c5eb4dd86e.tar.gz dotfiles-a71d60fe8063869c3150a49eab9c29c5eb4dd86e.zip | |
feat: add dina and sqlc packages, enable Go on NixOS
| -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 |
