blob: e9b05999f2882e9c3d0bc866b94121a792bd00df (
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
|
{
config,
lib,
pkgs,
...
}: let
inherit (lib) mkDefault;
in {
nixpkgs.hostPlatform.system = "x86_64-linux";
deploy.enable = true;
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";
#"encback" = "/dev/disk/by-uuid/1bd8c637-f71e-4fb0-96de-b660c4f1afaf";
};
fileSystems = {
"/" = {
device = "/dev/mapper/encroot";
fsType = "btrfs";
options = ["compress=lzo" "subvol=@nix"];
};
"/nix" = {
device = "/dev/mapper/encroot";
fsType = "btrfs";
options = ["compress=lzo" "subvol=@nix-store"];
};
"/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"];
};
#"/back" = {
# device = "/dev/mapper/encback";
# fsType = "btrfs";
# options = ["compress=lzo"];
#};
};
services.btrfs.autoScrub = {
enable = true;
fileSystems = ["/" "/home2"];
};
#services.beesd.filesystems = {
# root = {
# spec = "/";
# hashTableSizeMB = 4096; # 4KB blocks for 1TB drive
# extraOptions = ["--workaround-btrfs-send"];
# };
# hdd = {
# spec = "/home2";
# hashTableSizeMB = 8192; # 4KB blocks for 2TB drive
# extraOptions = ["--workaround-btrfs-send"];
# };
#};
networking = {
useNetworkd = true;
useDHCP = true;
};
systemd.network = {
wait-online.enable = false;
};
environment.systemPackages = [
pkgs.nvtopPackages.amd
];
##############################################################################
services = {
syncthing = {
enable = true;
user = mkDefault "cynerd";
group = mkDefault "cynerd";
openDefaultPorts = true;
overrideDevices = false;
overrideFolders = false;
dataDir = "/home/cynerd";
configDir = "/home/cynerd/.config/syncthing";
};
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 ../home-assistant/sensors.nix;
light = import ../home-assistant/light.nix;
};
default_config = {};
automation = "!include automations.yaml";
};
extraComponents = ["met"];
package = pkgs.home-assistant.override {
extraPackages = pkgs:
with pkgs; [
securetar
pyipp
];
};
};
};
}
|