-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflake.nix
72 lines (68 loc) · 1.94 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
{
description = "wait-for-interfaces - delay a systemd service's startup until an net interface is online";
inputs = {
flake-parts.url = "github:hercules-ci/flake-parts";
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
};
outputs = inputs @ {
self,
flake-parts,
...
}:
flake-parts.lib.mkFlake {inherit inputs;} {
imports = [
inputs.flake-parts.flakeModules.easyOverlay
inputs.flake-parts.flakeModules.partitions
./nixos/tests/flake-part.nix
];
systems = ["x86_64-linux" "aarch64-linux" "aarch64-darwin" "x86_64-darwin"];
perSystem = {
config,
self',
inputs',
pkgs,
lib,
system,
...
}: let
wfiPkg = p:
p.buildGo123Module {
pname = "wait-for-interfaces";
version = "0.0.0";
vendorHash = builtins.readFile ./wait-for-interfaces.sri;
src = lib.sourceFilesBySuffices (lib.sources.cleanSource ./.) [".go" ".mod" ".sum"];
meta.mainProgram = "wait-for-interfaces";
};
in {
overlayAttrs = {
inherit (config.packages) wait-for-interfaces;
};
packages.default = config.packages.wait-for-interfaces;
packages.wait-for-interfaces = wfiPkg pkgs;
formatter = pkgs.alejandra;
};
partitions.dev = {
extraInputsFlake = ./dev;
module = ./dev/flake-part.nix;
};
partitionedAttrs = {
checks = "dev";
devShells = "dev";
apps = "dev";
};
flake = {
nixosModules = {
systemConfiguration = import ./nixos;
withDefaultOverlay = {
nixpkgs.overlays = [self.overlays.default];
};
default = {...}: {
imports = [
self.nixosModules.withDefaultOverlay
self.nixosModules.systemConfiguration
];
};
};
};
};
}