2025-01-13 11:52:09 +08:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
...
|
|
|
|
}:
|
|
|
|
{
|
2024-01-26 13:59:24 +08:00
|
|
|
global = {
|
|
|
|
id = "22e9d4e37bd7436ba0cbe6e767fb0912";
|
|
|
|
auth.openssh.enable = true;
|
|
|
|
fs.esp.uuid = "8C36-CBE2";
|
|
|
|
fs.type = "zfs";
|
2024-03-25 12:46:45 +08:00
|
|
|
fs.zfs.alert.secret = "/nix/persist/secret/telegram";
|
2024-02-10 00:32:16 +08:00
|
|
|
fs.zfs.split.enable = true;
|
|
|
|
fs.zfs.split.store = "59b73292-8098-4774-b8b6-59c23130d405";
|
|
|
|
fs.zfs.split.secret = "f8983719-f9e7-42b2-b8f3-0f32f6b328ae";
|
2024-03-03 15:04:49 +08:00
|
|
|
fs.zfs.replication.enable = true;
|
|
|
|
fs.zfs.replication.remote = "focus@edge.514fpv.io:archive/backup/koishi/focus";
|
|
|
|
fs.zfs.replication.port = 8087;
|
2024-01-26 13:59:24 +08:00
|
|
|
fs.cryptsetup.enable = true;
|
|
|
|
fs.cryptsetup.allowDiscards = false;
|
|
|
|
fs.cryptsetup.uuids.secret = "c2bc361e-6f9a-48fa-b698-ed3603a9664a";
|
|
|
|
boot.lanzaboote = true;
|
2024-02-05 14:17:10 +08:00
|
|
|
boot.memtest = 4;
|
2024-01-27 09:55:36 +08:00
|
|
|
acme.enable = true;
|
2024-02-18 17:59:23 +08:00
|
|
|
netdata.enable = true;
|
|
|
|
netdata.host = "sf.514fpv.io";
|
|
|
|
netdata.addSSL = true;
|
|
|
|
netdata.useACMEHost = "sf.514fpv.io";
|
2024-01-26 13:59:24 +08:00
|
|
|
};
|
|
|
|
|
2024-01-29 17:44:01 +08:00
|
|
|
services.udev.extraRules = ''
|
|
|
|
SUBSYSTEM=="net", ACTION=="add", ATTR{address}=="6c:b3:11:3d:80:13", NAME="2g5"
|
|
|
|
'';
|
|
|
|
|
2024-01-26 13:59:24 +08:00
|
|
|
networking.proxy = {
|
2024-04-11 15:15:55 +08:00
|
|
|
allProxy = "http://compat:3128";
|
2024-01-26 13:59:24 +08:00
|
|
|
noProxy = "10.0.0.0/8,172.16.0.0/12,192.168.0.0/16,127.0.0.1,localhost,.localdomain";
|
|
|
|
};
|
|
|
|
|
|
|
|
imports = lib.pipe ./. [
|
|
|
|
builtins.readDir
|
|
|
|
(lib.filterAttrs (n: ty: ty == "regular" && n != "default.nix"))
|
|
|
|
(lib.mapAttrsToList (n: _: ./${n}))
|
|
|
|
];
|
|
|
|
|
|
|
|
hardware.enableRedistributableFirmware = true;
|
2025-01-13 11:52:09 +08:00
|
|
|
boot.initrd.availableKernelModules = [
|
|
|
|
"xhci_pci"
|
|
|
|
"ahci"
|
|
|
|
"nvme"
|
|
|
|
"usbhid"
|
|
|
|
"usb_storage"
|
|
|
|
"sd_mod"
|
|
|
|
];
|
2024-01-26 13:59:24 +08:00
|
|
|
boot.initrd.kernelModules = [ "i915" ];
|
|
|
|
boot.kernelModules = [ "kvm-intel" ];
|
|
|
|
boot.extraModulePackages = [ ];
|
|
|
|
hardware.cpu.intel.updateMicrocode = true;
|
|
|
|
}
|