nixos/modules/hardware/thunderbolt/default.nix

17 lines
335 B
Nix
Raw Permalink Normal View History

2023-01-08 00:46:09 +01:00
{ config, lib, pkgs, ... }:
let
cfg = config.my.hardware.thunderbolt;
in
{
options.my.hardware.thunderbolt = {
enable = lib.mkEnableOption "thunderbolt configuration";
};
config = lib.mkIf cfg.enable {
environment.systemPackages = with pkgs; [
thunderbolt
];
services.hardware.bolt.enable = true;
};
}