https://github.com/fission-codes/nix-overlay
A Nix overlay for Fission packages
https://github.com/fission-codes/nix-overlay
Last synced: about 1 year ago
JSON representation
A Nix overlay for Fission packages
- Host: GitHub
- URL: https://github.com/fission-codes/nix-overlay
- Owner: fission-codes
- Created: 2023-02-10T22:19:13.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-03-19T19:25:38.000Z (over 2 years ago)
- Last Synced: 2025-04-03T04:56:18.403Z (about 1 year ago)
- Language: Nix
- Size: 76.2 KB
- Stars: 1
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Fission Tools Overlay
This repository provides a nix overlay for using various Fission tools.
## Usage
### Nix Channel
Add this overlay as a nix channel
Run `nix-channel --add https://github.com/fission-codes/nix-overlay/archive/main.tar.gz fission`
You can then import `` in your code.
### Using Flakes
If you're using flakes, set this repo as an input and add to `nixpkgs.overlays` like this:
```nix
{
inputs = {
fission.url = "github:fission-codes/nix-overlay";
};
outputs = { self, nixpkgs, fission }: {
nixosConfigurations.machine = nixpkgs.lib.nixosSystem {
modules =
[
({ pkgs, ... }: {
nixpkgs.overlays = [ fission.overlay ];
...
})
];
};
};
}
```