mirror of
https://github.com/gburd/nix-config.git
synced 2024-11-15 08:46:25 +00:00
14 lines
324 B
Nix
14 lines
324 B
Nix
|
{ desktop, lib, pkgs, ... }: {
|
||
|
environment.systemPackages = with pkgs; [ ] ++ lib.optionals (desktop != null) [
|
||
|
gnome.simple-scan
|
||
|
];
|
||
|
|
||
|
hardware = {
|
||
|
sane = {
|
||
|
enable = true;
|
||
|
#extraBackends = with pkgs; [ hplipWithPlugin sane-airscan ];
|
||
|
extraBackends = with pkgs; [ sane-airscan ];
|
||
|
};
|
||
|
};
|
||
|
}
|