nichts/modules/packages/hardware.nix
2024-09-23 18:54:14 +02:00

13 lines
145 B
Nix

{
config,
lib,
pkgs,
...
}: let
in {
environment.systemPackages = with pkgs; lib.mkMerge [
(mkIf cfg.bluetooth.enable [
])
];
}