9d80a6de66
Add a comment to default.nix and shell.nix briefly outlining what flake-compat/default.nix does.
7 lines
285 B
Nix
7 lines
285 B
Nix
# The `default.nix` in flake-compat reads `flake.nix` and `flake.lock` from `src` and
|
|
# returns an attribute set of the shape `{ defaultNix, shellNix }`
|
|
|
|
(import (fetchTarball https://github.com/edolstra/flake-compat/archive/master.tar.gz) {
|
|
src = builtins.fetchGit ./.;
|
|
}).shellNix
|