10 lines
197 B
Nix
10 lines
197 B
Nix
{ config, lib, ... }:
|
|
|
|
lib.mkIf config.sbruder.gui.enable {
|
|
hardware.sane.enable = true;
|
|
|
|
boot.extraModulePackages = with config.boot.kernelPackages; [
|
|
v4l2loopback # screen sharing
|
|
];
|
|
}
|