diff options
Diffstat (limited to 'default.nix')
-rw-r--r-- | default.nix | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/default.nix b/default.nix new file mode 100644 index 00000000..50e7e681 --- /dev/null +++ b/default.nix @@ -0,0 +1,8 @@ +# Flake's default package for non-flake-enabled nix instances +let + compat = builtins.fetchTarball { + url = "https://github.com/edolstra/flake-compat/archive/b4a34015c698c7793d592d66adbab377907a2be8.tar.gz"; + sha256 = "sha256:1qc703yg0babixi6wshn5wm2kgl5y1drcswgszh4xxzbrwkk9sv7"; + }; +in + (import compat {src = ./.;}).defaultNix.default |