Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding default.nix for flake-compat (#4279)
This way non-flake users can access packages with niv or npins easily, and as flake-compat is already a dependency, this is just a "glue". Copy-pasted from [here](https://github.com/edolstra/flake-compat/tree/ff81ac966bb2cae68946d5ed5fc4994f96d0ffec?tab=readme-ov-file#usage). An example with npins would be: `npins add github ghostty-org ghostty` and then in the config: ```nix {pkgs, ...}: let sources = import ./npins; ghostty = import sources.ghostty; in { environment.systemPackages = [ ghostty.packages.${pkgs.system}.default ]; } ```
- Loading branch information