From ad9d929e954638c9a528be5d44522c82ee657e8a Mon Sep 17 00:00:00 2001 From: Ittihadyya Date: Tue, 18 Feb 2025 20:24:24 +0200 Subject: [PATCH] added droidcam to programs --- peripherals.mod.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/peripherals.mod.nix b/peripherals.mod.nix index 5e46a58..eac70ac 100644 --- a/peripherals.mod.nix +++ b/peripherals.mod.nix @@ -7,5 +7,14 @@ services.udev.packages = [pkgs.android-udev-rules]; } ) + ({ + pkgs, + lib, + config, + ... + }: { + programs.droidcam.enable = true; + environment.systemPackages = [pkgs.droidcam]; + }) ]; }