Home

dotnix @main - refs - log -
-
https://git.jolheiser.com/dotnix.git
My nix dotfiles
tree log patch
pokego
Signature
-----BEGIN SSH SIGNATURE----- U1NIU0lHAAAAAQAAADMAAAALc3NoLWVkMjU1MTkAAAAgBTEvCQk6VqUAdN2RuH6bj1dNkY oOpbPWj+jw4ua1B1cAAAADZ2l0AAAAAAAAAAZzaGE1MTIAAABTAAAAC3NzaC1lZDI1NTE5 AAAAQJCQKG2J/3EaRBUMZKNVOdGo9TtLaLazwJs68J93v/eWeDnryo1xcocbqKVtREki0L B0qxXVLop5RuqsTzipGAA= -----END SSH SIGNATURE-----
jolheiser <git@jolheiser.com>
1 month ago
3 changed files, 29 additions(+), 0 deletions(-)
M apps/nogui/nushell.nixapps/nogui/nushell.nix
diff --git a/apps/nogui/nushell.nix b/apps/nogui/nushell.nix
index 660bc92206ab16683716ff99bc8aedce2a4f0880..153ecd12034b4c7b1c07252f5d19fd1db4e2f019 100644
--- a/apps/nogui/nushell.nix
+++ b/apps/nogui/nushell.nix
@@ -20,6 +20,8 @@       use ${nu_scripts}/share/nu_scripts/custom-completions/git/git-completions.nu *
       use ${nu_scripts}/share/nu_scripts/custom-completions/glow/glow-completions.nu *
       use ${nu_scripts}/share/nu_scripts/custom-completions/just/just-completions.nu *
       use ${nu_scripts}/share/nu_scripts/custom-completions/nix/nix-completions.nu *
+
+      ${jolheiser.pokego}/bin/pokego --no-title
     '';
     extraEnv = ''
       $env.GOPATH = "${config.xdg.dataHome}/go"
M flake.lockflake.lock
diff --git a/flake.lock b/flake.lock
index bc5897570e7aad10b00264640961ca501ca365c6..048e2c76eccefc780452790cf1a39a27e057ebd5 100644
--- a/flake.lock
+++ b/flake.lock
@@ -384,6 +384,27 @@         "repo": "NUR",
         "type": "github"
       }
     },
+    "pokego": {
+      "inputs": {
+        "nixpkgs": [
+          "jolheiser",
+          "nixpkgs"
+        ]
+      },
+      "locked": {
+        "lastModified": 1741123315,
+        "narHash": "sha256-NlLFuW6pOr9xt+W7nPZUTflVwrOJgkJZWlk9RJxDVO4=",
+        "ref": "refs/heads/main",
+        "rev": "fbf059d0ecfd1292d34c7e4ae69e8c58d0c27737",
+        "revCount": 1,
+        "type": "git",
+        "url": "https://git.jolheiser.com/pokego.git"
+      },
+      "original": {
+        "type": "git",
+        "url": "https://git.jolheiser.com/pokego.git"
+      }
+    },
     "root": {
       "inputs": {
         "agenix": "agenix",
@@ -397,6 +418,7 @@         "jolheiser": "jolheiser_2",
         "nixos-hardware": "nixos-hardware",
         "nixpkgs": "nixpkgs_3",
         "nur": "nur",
+        "pokego": "pokego",
         "spectre": "spectre",
         "tclip": "tclip"
       }
M flake.nixflake.nix
diff --git a/flake.nix b/flake.nix
index 4c56a0d7742d8855a39df5c244923e0f54f6119c..a761e2f50f707177460e3d78f222e751854a410c 100644
--- a/flake.nix
+++ b/flake.nix
@@ -36,6 +36,10 @@     spectre = {
       url = "git+https://git.jolheiser.com/go-spectre.git";
       inputs.nixpkgs.follows = "nixpkgs";
     };
+    pokego = {
+      url = "git+https://git.jolheiser.com/pokego.git";
+      inputs.nixpkgs.follows = "jolheiser/nixpkgs";
+    };
     ghostty.url = "git+ssh://git@github.com/ghostty-org/ghostty";
     tclip = {
       url = "github:tailscale-dev/tclip";
@@ -65,6 +69,7 @@             helix = inputs.helix.packages.${prev.system}.default;
             gomodinit = inputs.gomodinit.packages.${prev.system}.default;
             cfg = inputs.cfg.packages.${prev.system}.default;
             spectre = inputs.spectre.packages.${prev.system}.default;
+            pokego = inputs.pokego.packages.${prev.system}.default;
           };
           tclip = inputs.tclip.packages.${prev.system}.tclip;
           ghostty = inputs.ghostty.packages.${prev.system}.ghostty;