https://github.com/figsoda/pkgs
My nix packages that don't fit in nixpkgs
https://github.com/figsoda/pkgs
flake flakes nix nix-flake nix-overlay nixos nixpkgs overlay packages pkgs
Last synced: 10 months ago
JSON representation
My nix packages that don't fit in nixpkgs
- Host: GitHub
- URL: https://github.com/figsoda/pkgs
- Owner: figsoda
- License: mpl-2.0
- Created: 2020-12-03T13:46:20.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2025-05-07T08:17:06.000Z (10 months ago)
- Last Synced: 2025-05-07T09:26:35.487Z (10 months ago)
- Topics: flake, flakes, nix, nix-flake, nix-overlay, nixos, nixpkgs, overlay, packages, pkgs
- Language: Nix
- Homepage:
- Size: 461 KB
- Stars: 9
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# pkgs
My nix packages
Binary cache is available for x86_64-linux on [cachix](https://app.cachix.org/cache/figsoda)
```sh
cachix use figsoda
```
## Usage
As a flake (recommended)
```nix
# flake.nix
{
inputs = {
figsoda-pkgs.url = "github:figsoda/pkgs";
};
}
```
As an overlay
```nix
# configuration.nix
{
nixpkgs.overlays = [
(import (fetchTarball "https://github.com/figsoda/pkgs/archive/main.tar.gz"))
];
}
```
As a set of packages
```nix
import "${fetchTarball "https://github.com/figsoda/pkgs/archive/main.tar.gz"}/packages.nix"
```
## Available packages
- [rust-templates](https://github.com/figsoda/rust-templates)
- [ymdl](https://github.com/figsoda/ymdl)