https://github.com/linuxmobile/mynixpkgs
https://github.com/linuxmobile/mynixpkgs
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/linuxmobile/mynixpkgs
- Owner: linuxmobile
- License: mit
- Created: 2025-07-18T04:15:32.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2025-08-20T16:26:52.000Z (5 months ago)
- Last Synced: 2025-08-20T18:38:20.204Z (5 months ago)
- Language: Nix
- Size: 68.4 KB
- Stars: 0
- Watchers: 0
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# mynixpkgs
A minimal Nix flake wrapper for custom packages.
## Usage
Add this flake as an input and use the packages from `packages.`.
Example:
```nix
{
inputs.mynixpkgs.url = "github:linuxmobile/mynixpkgs";
}
```
Then, in your configuration:
```nix
{
environment.systemPackages = [
inputs.mynixpkgs.packages.${pkgs.system}.
];
}
```
## Packages
See `pkgs/` for available packages.
---
Credits: fufexan