1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ lib, ... }:
{
imports = [
./quirks.nix
./hidutil.nix
./syncthing.nix
./skhd.nix
];
options = {
networking.primaryIP = lib.mkOption { type = lib.types.str; default = ""; };
networking.primaryIP4 = lib.mkOption { type = lib.types.str; default = ""; };
networking.secondaryIP4 = lib.mkOption { type = lib.types.str; default = ""; };
};
}