about summary refs log tree commit diff
path: root/modules/nixos-apple-silicon/default.nix
blob: 6bf30b1f907c115f609322e62b46a99fddc1f53d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# This file provides backward compatibility to nix < 2.4 clients
{ system ? builtins.currentSystem }:
let
  lock = builtins.fromJSON (builtins.readFile ./flake.lock);

  inherit (lock.nodes.flake-compat.locked) owner repo rev narHash;

  flake-compat = fetchTarball {
    url = "https://github.com/${owner}/${repo}/archive/${rev}.tar.gz";
    sha256 = narHash;
  };

  flake = import flake-compat { inherit system; src = ./.; };
in
flake.defaultNix