blob: 1211cf9543865221944773ddd2da89f645614ea5 (
plain)
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
|
{ self, nixpkgsDefault }: rec {
# Mapping of board name to the appropriate system
boardSystem = {
omnia = {
config = "armv7l-unknown-linux-gnueabihf";
system = "armv7l-linux";
};
mox = {
config = "aarch64-unknown-linux-gnu";
system = "aarch64-linux";
};
};
# NixOS system for specific Turris board
nixturrisSystem = {
board,
nixpkgs ? nixpkgsDefault,
modules ? [],
override ? {}
}: nixpkgs.lib.nixosSystem ({
modules = [
self.nixosModules.default
{
nixpkgs.system = boardSystem.${board}.system;
turris.board = board;
}
] ++ modules;
} // override);
# The minimalized system to decrease amount of ram needed for rebuild
# TODO this does not work right now as it requires just load of work to do.
# The nix-daemon pulls in xserver and the result is that pretty much
# everything has to be included in such case.
nixturrisMinSystem = {
board,
nixpkgs ? nixpkgsDefault,
modules ? [],
override ? {}
}:nixpkgs.lib.nixos.evalModules ({
modules = (map (v: nixpkgs.outPath + "/nixos/modules" + v) (import ./nixos-min-modules.nix)) ++ [
self.nixosModules.default
{
nixpkgs.system = boardSystem.${board}.system;
turris.board = board;
}
] ++ modules;
} // override);
}
|