https://github.com/atomicptr/nix
https://github.com/atomicptr/nix
Last synced: 11 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/atomicptr/nix
- Owner: atomicptr
- Created: 2024-07-19T16:40:11.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-02-25T08:46:22.000Z (11 months ago)
- Last Synced: 2025-03-07T00:37:44.465Z (11 months ago)
- Language: Nix
- Size: 43.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# nix
A place to host my own nix packages
## Usage
### Flake
Just add this repo as an input
```nix
{
# ...
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
atomicptr.url = "github:atomicptr/nix";
# ...
};
# ...
}
````
### Regular
Just fetch and import the repository:
```nix
let
atomicptr = import (fetchGit { url = "http://github.com/atomicptr/nix.git"; }) {
pkgs = import {
config = {
allowUnfree = true;
};
};
};
in
{
environment.systemPackages = with pkgs; [
atomicptr.playdate-sdk
];
}
```