7 lines
160 B
Nix
7 lines
160 B
Nix
{ pkgs, ... }:
|
|
{
|
|
hardware.sane.enable = true;
|
|
hardware.sane.disabledDefaultBackends = [ "v4l" ];
|
|
users.users.fruchti.extraGroups = [ "scanner" ];
|
|
}
|