blob: 1a586a1dbe03d07af738f044eb9c69683f138b16 (
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
|
{
config,
lib,
pkgs,
...
}:
with lib; {
config = {
cynerd = {
desktop.enable = true;
develop = true;
gaming = true;
openvpn = {
elektroline = true;
};
};
boot.initrd.availableKernelModules = ["nvme" "xhci_pci" "usb_storage"];
boot.kernelModules = ["kvm-amd"];
hardware.cpu.amd.updateMicrocode = true;
services.hardware.openrgb.motherboard = "amd";
cynerd.autounlock = {
"encroot" = "/dev/disk/by-uuid/7c412ae6-6016-45af-8c2a-8fcc394dbbe6";
"enchdd1" = "/dev/disk/by-uuid/87f16080-5ff6-43dd-89f3-307455a46fbe";
"enchdd2" = "/dev/disk/by-uuid/be4a33fa-8bc6-431d-a3ac-787668f223ed";
};
fileSystems = {
"/" = {
device = "/dev/mapper/encroot";
fsType = "btrfs";
options = ["compress=lzo" "subvol=@nix"];
};
"/home" = {
device = "/dev/mapper/encroot";
fsType = "btrfs";
options = ["compress=lzo" "subvol=@home"];
};
"/boot" = {
device = "/dev/disk/by-uuid/49D9-3A0D";
fsType = "vfat";
};
"/home2" = {
device = "/dev/mapper/enchdd1";
fsType = "btrfs";
options = ["compress=lzo" "subvol=@home"];
};
};
services.syncthing = {
enable = true;
user = mkDefault "cynerd";
group = mkDefault "cynerd";
openDefaultPorts = true;
overrideDevices = false;
overrideFolders = false;
dataDir = "/home/cynerd";
configDir = "/home/cynerd/.config/syncthing";
};
services.home-assistant = {
enable = true;
openFirewall = true;
configDir = "/var/lib/hass";
config = {
homeassistant = {
name = "SPT";
latitude = "!secret latitude";
longitude = "!secret longitude";
elevation = "!secret elevation";
time_zone = "Europe/Prague";
country = "CZ";
};
http.server_port = 8808;
mqtt = {
sensor = import ../modules/home-assistant/sensors.nix;
light = import ../modules/home-assistant/light.nix;
};
met = {};
default_config = {};
automation = "!include automations.yaml";
};
extraComponents = [];
package = pkgs.home-assistant.override {
extraPackages = pkgs:
with pkgs; [
securetar
pyipp
];
};
};
services.zigbee2mqtt = {
enable = true;
settings = {
serial.port = "/dev/serial/by-id/usb-ITEAD_SONOFF_Zigbee_3.0_USB_Dongle_Plus_V2_20220812153849-if00";
mqtt = {
server = "mqtt://${config.cynerd.hosts.spt.mox}:1883";
user = "zigbee2mqtt";
password = "!secret.yaml mqtt_password";
};
advanced = {
network_key = "!secret.yaml network_key";
homeassistant_legacy_entity_attributes = false;
legacy_api = false;
legacy_availability_payload = false;
last_seen = "epoch";
};
frontend = true;
availability = true;
homeassistant = {
legacy_triggers = false;
};
device_options.legacy = false;
permit_join = false;
devices = config.secrets.zigbee2mqttDevices;
};
};
};
}
|