feat(hw): add rtl-sdr support

This commit is contained in:
etwas 2025-02-08 21:46:15 +01:00
parent 65fb0d3478
commit d015e577a8
Signed by: etwas
SSH key fingerprint: SHA256:bHhIeAdn/2k9jmOs6+u6ox98VYmoHUN3HfnpV2w8Ws0
3 changed files with 5 additions and 0 deletions

View file

@ -60,6 +60,7 @@
"storage"
"tty"
"dialout"
"plugdev"
];
shell = pkgs.zsh;
};

View file

@ -4,5 +4,6 @@
./diskservices.nix
./networking.nix
./power_settings.nix
./rtl_sdr.nix
];
}

View file

@ -0,0 +1,3 @@
{
hardware.rtl-sdr.enable = true;
}