https://github.com/euank/nixek-overlay
Just some nix packages and stuff
https://github.com/euank/nixek-overlay
Last synced: about 1 year ago
JSON representation
Just some nix packages and stuff
- Host: GitHub
- URL: https://github.com/euank/nixek-overlay
- Owner: euank
- License: mit
- Created: 2020-05-18T01:55:37.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2024-07-26T12:48:48.000Z (almost 2 years ago)
- Last Synced: 2025-04-11T00:06:54.884Z (about 1 year ago)
- Language: Nix
- Size: 193 KB
- Stars: 8
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## nixek
This is my overlay of personal packages, modules, etc that I don't think are
ready for the main nix tree yet, but that I wrote for whatever reason.
This is "personal stuff that works on my laptop" quality software, user beware.
Note as well that this loosely tracks nixpkgs unstable, but the actual commit
it tracks is whatever currently seems to be working for me, so it may not work
if upstream has changed significantly.
### Usage
This overlay is meant to be used with nix flakes.
It may be used like so as a flake input:
```nix
inputs.ekverlay.url = "github:euank/nixek-overlay";
outputs = { self, nixpkgs, ekverlyay }:
let
pkgs = import nixpkgs {
system = "x86_64-linux";
overlays = [
ekverlay.overlay
];
config = { allowUnfree = true; };
};
in {
# Normal outputs here, using the 'pkgs' reference above.
};
```