blob: 4a696b152d8ae52ef5f308323e1444ca2c5b303c (
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
|
{
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;
cynerd.autounlock = {
"encroot" = "/dev/disk/by-uuid/8095988e-239b-4417-9df6-94a40e4133ed";
"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/87B0-A1D5";
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 = {
broker = config.cynerd.hosts.spt.mox;
port = 1883;
username = "homeassistant";
password = "!secret mqtt_password";
sensor = import ../modules/home-assistant/sensors.nix;
light = import ../modules/home-assistant/light.nix;
};
met = {};
default_config = {};
};
extraComponents = [];
package = pkgs.home-assistant.override {
extraPackages = pkgs:
with pkgs; [
securetar
];
};
};
};
}
|