current
 1{inputs, ...}: {
 2  den.aspects.mobius.nixos = {pkgs, ...}: {
 3    imports = with inputs.nixos-hardware.nixosModules; [
 4      common-pc-ssd
 5    ];
 6
 7    boot.initrd.availableKernelModules = [
 8      "xhci_pci"
 9      "nvme"
10      "thunderbolt"
11      "usbhid"
12      "usb_storage"
13      "sd_mod"
14    ];
15
16    # Thunderbolt
17    services.hardware.bolt.enable = true;
18    networking.firewall.trustedInterfaces = ["thunderbolt0"];
19
20    # Bluetooth
21    hardware.bluetooth.enable = true;
22  };
23}