https://github.com/bouk/pkgs
My package repository with a couple useful nix tools.
https://github.com/bouk/pkgs
Last synced: over 1 year ago
JSON representation
My package repository with a couple useful nix tools.
- Host: GitHub
- URL: https://github.com/bouk/pkgs
- Owner: bouk
- Created: 2025-02-24T10:58:58.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-02-24T11:16:11.000Z (over 1 year ago)
- Last Synced: 2025-02-24T12:27:01.631Z (over 1 year ago)
- Language: Shell
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# boukpkgs
My package repository with a couple useful nix tools.
## Usage
You can include the repository in your flake like this:
```nix
{
..
inputs.boukpkgs.url = "github:bouk/boukpkgs";
inputs.boukpkgs.inputs.nixpkgs.follows = "nixpkgs";
}
```
And then use `boukpkgs.overlays.default` as an overlay.
Or run and install the packages directly:
```bash
$ nix run github:bouk/pkgs#nix-remote-shell .#packages.x86_64-linux.cowsay root@example.com
$ nix profile install github:bouk/pkgs#nix-remote-shell
```
## Packages
### nix-remote-shell
Open a shell remotely with a package available from a local flake.
### nix-remote-build
Build a flake on a remote machine.