9 lines
222 B
Nix
9 lines
222 B
Nix
{ config, lib, ... }:
|
|
{
|
|
options.sdr.enable = lib.mkEnableOption "Enable rtl-sdr";
|
|
|
|
config = lib.mkIf config.sdr.enable {
|
|
hardware.rtl-sdr.enable = true;
|
|
users.users."lilith".extraGroups = [ "plugdev" ];
|
|
};
|
|
}
|