-
Notifications
You must be signed in to change notification settings - Fork 98
/
Copy pathflake.nix
79 lines (67 loc) · 2.39 KB
/
flake.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
description = "Apple Silicon support for NixOS";
inputs = {
nixpkgs = {
url = "github:nixos/nixpkgs/nixos-unstable";
};
rust-overlay = {
url = "github:oxalica/rust-overlay";
flake = false;
};
flake-compat.url = "github:nix-community/flake-compat";
};
outputs = { self, ... }@inputs:
let
# build platforms supported for uboot in nixpkgs
systems = [ "aarch64-linux" "x86_64-linux" ]; # "i686-linux" omitted
forAllSystems = inputs.nixpkgs.lib.genAttrs systems;
in
{
overlays = rec {
apple-silicon-overlay = import ./apple-silicon-support/packages/overlay.nix;
default = apple-silicon-overlay;
};
nixosModules = rec {
apple-silicon-support = ./apple-silicon-support;
default = apple-silicon-support;
};
packages = forAllSystems (system:
let
pkgs = import inputs.nixpkgs {
crossSystem.system = "aarch64-linux";
localSystem.system = system;
overlays = [
(import inputs.rust-overlay)
self.overlays.default
];
};
in {
inherit (pkgs) m1n1 uboot-asahi linux-asahi asahi-fwextract mesa-asahi-edge;
inherit (pkgs) asahi-audio;
installer-bootstrap =
let
installer-system = inputs.nixpkgs.lib.nixosSystem {
inherit system;
# make sure this matches the post-install
# `hardware.asahi.pkgsSystem`
pkgs = import inputs.nixpkgs {
crossSystem.system = "aarch64-linux";
localSystem.system = system;
overlays = [ self.overlays.default ];
};
specialArgs = {
modulesPath = inputs.nixpkgs + "/nixos/modules";
};
modules = [
./iso-configuration
{ hardware.asahi.pkgsSystem = system; }
];
};
config = installer-system.config;
in (config.system.build.isoImage.overrideAttrs (old: {
# add ability to access the whole config from the command line
passthru = (old.passthru or {}) // { inherit config; };
}));
});
};
}