mirror of
https://github.com/gburd/nix-config.git
synced 2024-11-14 16:36:24 +00:00
11 lines
295 B
Nix
11 lines
295 B
Nix
{ desktop, lib, pkgs, ... }: {
|
|
imports = lib.optional (builtins.isString desktop) ../desktop/simple-scan.nix;
|
|
|
|
hardware = {
|
|
sane = {
|
|
enable = true;
|
|
#extraBackends = with pkgs; [ hplipWithPlugin sane-airscan ];
|
|
extraBackends = with pkgs; [ sane-airscan ];
|
|
};
|
|
};
|
|
}
|