nixos/spec/eientei/default.nix

46 lines
1.5 KiB
Nix
Raw Normal View History

2024-02-01 17:27:06 +08:00
{ lib
, pkgs
2024-02-01 17:27:06 +08:00
, ... }: {
global = {
id = "ff96c05be13e44f681292205370eed1a";
auth.openssh.enable = true;
fs.esp.uuid = "C368-7571";
fs.type = "zfs";
fs.zfs.split.enable = true;
fs.zfs.split.store = "d9202e56-a14f-4342-acdb-dbae33d680fc";
fs.zfs.split.secret = "1404c4f1-b890-4cf0-ab8a-26bd81bd2254";
fs.zfs.replication.enable = true;
fs.zfs.replication.remote = "koishi@archive:archive/backup/koishi/eientei";
2024-02-01 17:27:06 +08:00
fs.cryptsetup.enable = true;
fs.cryptsetup.allowDiscards = false;
fs.cryptsetup.uuids.secret = "c33c9b18-a280-42d7-8740-3f8d3f60dc43";
2024-02-19 12:55:37 +08:00
gpu.enable = true;
gpu.type = "intel";
gpu.session = false;
2024-02-01 17:27:06 +08:00
boot.lanzaboote = true;
2024-02-04 22:17:38 +08:00
boot.memtest = 4;
acme.enable = true;
2024-02-02 05:13:13 +08:00
oci.enable = true;
2024-02-01 17:27:06 +08:00
};
2024-02-04 22:17:38 +08:00
services.udev.extraRules = ''
SUBSYSTEM=="net", ACTION=="add", ATTR{address}=="80:61:5f:07:9e:2f", NAME="ix0"
SUBSYSTEM=="net", ACTION=="add", ATTR{address}=="00:e0:4c:68:bb:30", NAME="ss0"
'';
2024-02-01 17:27:06 +08:00
imports = lib.pipe ./. [
builtins.readDir
(lib.filterAttrs (n: ty: ty == "regular" && n != "default.nix"))
(lib.mapAttrsToList (n: _: ./${n}))
];
hardware.enableRedistributableFirmware = true;
2024-02-07 22:32:42 +08:00
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "mpt3sas" "nvme" "usbhid" "usb_storage" "sd_mod" ];
2024-02-01 17:27:06 +08:00
boot.initrd.kernelModules = [ "i915" ];
boot.kernelModules = [ "kvm-intel" ];
boot.extraModulePackages = [ ];
networking.firewall.allowedTCPPorts = [ 25565 ];
environment.systemPackages = with pkgs; [ python3 ];
2024-02-01 17:27:06 +08:00
}