all da tunderbolt

This commit is contained in:
Shelvacu
2024-09-13 13:13:42 -07:00
parent 4c4c4dc675
commit d80f4b3a02
2 changed files with 10 additions and 4 deletions

View File

@@ -11,6 +11,7 @@
inputs.nixos-hardware.nixosModules.framework-16-7040-amd
./apex.nix
./android.nix
./thunderbolt.nix
];
vacu.hostName = "fw"; # Define your hostname.
@@ -52,10 +53,6 @@
(inkscape-with-extensions.override { inkscapeExtensions = null; })
libsmi
net-snmp
kdePackages.plasma-thunderbolt
bolt
thunderbolt
];
services.fwupd.enable = true;

9
fw/thunderbolt.nix Normal file
View File

@@ -0,0 +1,9 @@
{ pkgs, config, ... }: {
services.hardware.bolt.enable = true;
vacu.packages = [
pkgs.thunderbolt
config.services.hardware.bolt.package
pkgs.kdePackages.plasma-thunderbolt
];
}