NixOS/system/modules/scanner.nix

21 lines
435 B
Nix
Raw Normal View History

2024-06-12 09:54:11 +07:00
{ config, lib, pkgs, ... }:
let
cfg = config.profile.scanner;
username = config.profile.user.name;
2024-06-12 09:54:11 +07:00
in
{
config = lib.mkIf cfg.enable {
users.users.${username}.extraGroups = [ "scanner" ];
2024-06-12 09:54:11 +07:00
environment.systemPackages = with pkgs; [
skanlite
];
hardware.sane = {
enable = true;
brscan4.enable = true; # Brother Scanner
extraBackends = with pkgs; [
sane-airscan
];
};
};
}