nixos-config/modules/office.nix

10 lines
197 B
Nix
Raw Normal View History

{ config, lib, ... }:
2020-08-22 17:44:39 +02:00
lib.mkIf config.sbruder.gui.enable {
2020-08-22 17:44:39 +02:00
hardware.sane.enable = true;
2020-12-08 18:48:42 +01:00
boot.extraModulePackages = with config.boot.kernelPackages; [
v4l2loopback # screen sharing
];
2020-08-22 17:44:39 +02:00
}