Simon Bruder
10b8d432d5
This applies the REUSE specification to the repository, so the licensing information can be tracked for every file individually.
14 lines
308 B
Nix
14 lines
308 B
Nix
# SPDX-FileCopyrightText: 2020 Simon Bruder <simon@sbruder.de>
|
|
#
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
{ config, lib, ... }:
|
|
|
|
lib.mkIf config.sbruder.gui.enable {
|
|
hardware.sane.enable = true;
|
|
|
|
boot.extraModulePackages = with config.boot.kernelPackages; [
|
|
v4l2loopback # screen sharing
|
|
];
|
|
}
|