blob: 964df12d6c91314bc142adcf4cd507ee1f7e5e34 (
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
|
{
withSystem,
inputs,
...
}: {
imports = [./deploy.nix];
configurations = {
nixos = {
builder = inputs.nixpkgs.lib.nixosSystem;
modules = [
inputs.agenix.nixosModules.default
inputs.hm.nixosModules.home-manager
];
systems = {
glados = {};
glados-wsl = {};
atlas = {
builder = inputs.nixpkgs-stable.lib.nixosSystem;
system = "aarch64-linux";
};
};
};
darwin = {
builder = inputs.darwin.lib.darwinSystem;
modules = [
inputs.hm.darwinModules.home-manager
];
systems = {
caroline = {};
};
};
};
flake.legacyPackages.x86_64-linux = withSystem "x86_64-linux" ({pkgs, ...}: {
openWrtImages = {
turret = pkgs.callPackage ./systems/turret {
inherit (inputs) openwrt-imagebuilder;
};
};
});
}
|