16 lines
199 B
Nix
16 lines
199 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
hackrf
|
|
];
|
|
|
|
hardware = {
|
|
bluetooth = {
|
|
enable = true;
|
|
};
|
|
graphics = {
|
|
enable = true;
|
|
};
|
|
};
|
|
}
|