16 lines
183 B
Nix
16 lines
183 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
hardware = {
|
|
bluetooth = {
|
|
enable = true;
|
|
};
|
|
graphics = {
|
|
enable = true;
|
|
};
|
|
rtl-sdr = {
|
|
enable = true;
|
|
};
|
|
};
|
|
|
|
}
|