blob: 263ef8155371aa065db036e140f824147712b82f (
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
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
80
81
82
83
84
85
|
{
description = "Cynerd's personal flake";
inputs = {
shellrc.url = "git+https://git.cynerd.cz/shellrc";
personal-secret.url = "git+ssh://git@cynerd.cz/nixos-personal-secret";
nixturris = {
url = "git+https://git.cynerd.cz/nixturris";
inputs.nixpkgs.follows = "nixpkgs";
};
sterm.url = "github:wentasah/sterm";
};
outputs = { self
, nixpkgs, flake-utils
, shellrc, nixturris, personal-secret
, sterm
}:
with flake-utils.lib;
{
overlays.default = final: prev: import ./pkgs { nixpkgs = prev; };
nixosModules = import ./nixos nixpkgs;
nixosConfigurations = let
modules = hostname: [
self.nixosModules.default
self.nixosModules."machine-${hostname}"
shellrc.nixosModules.default
(personal-secret.lib.personalSecrets hostname)
{
networking.hostName = hostname;
nixpkgs.overlays = [
self.overlays.default
sterm.overlay
];
}
];
genericSystem = system: hostname: {
${hostname} = nixpkgs.lib.nixosSystem {
system = system;
modules = modules hostname;
};
};
amd64System = genericSystem "x86_64-linux";
armv7lSystem = genericSystem "armv7l-linux";
aarch64System = genericSystem "aarch64-linux";
turrisSystem = board: hostname: {
${hostname} = nixturris.lib.nixturrisSystem {
nixpkgs = nixpkgs;
board = board;
modules = modules hostname;
};
};
turrisMoxSystem = turrisSystem "mox";
turrisOmniaSystem = turrisSystem "omnia";
in
amd64System "albert" //
amd64System "binky" //
amd64System "errol" //
amd64System "lipwig" //
amd64System "ridcully" //
amd64System "susan" //
armv7lSystem "spt-mpd" //
aarch64System "adm-mpd" //
turrisMoxSystem "dean" //
turrisOmniaSystem "spt-omnia" //
turrisMoxSystem "spt-mox" //
turrisMoxSystem "spt-mox2" //
turrisOmniaSystem "adm-omnia" //
turrisOmniaSystem "adm-omnia2";
} // eachDefaultSystem (system: {
packages = filterPackages system (flattenTree (
import ./pkgs { nixpkgs = nixpkgs.legacyPackages."${system}"; }
));
devShells = filterPackages system
(import ./devShells { inherit nixpkgs; inherit shellrc; inherit system; });
});
}
|