mirror of https://git.jolheiser.com/dotnix.git
pokego
parent
27270a95dd
commit
b65c320ca2
|
@ -20,6 +20,8 @@
|
|||
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"
|
||||
|
|
22
flake.lock
22
flake.lock
|
@ -384,6 +384,27 @@
|
|||
"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 @@
|
|||
"nixos-hardware": "nixos-hardware",
|
||||
"nixpkgs": "nixpkgs_3",
|
||||
"nur": "nur",
|
||||
"pokego": "pokego",
|
||||
"spectre": "spectre",
|
||||
"tclip": "tclip"
|
||||
}
|
||||
|
|
|
@ -36,6 +36,10 @@
|
|||
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 @@
|
|||
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;
|
||||
|
|
Loading…
Reference in New Issue