diff options
| author | Soispha <soispha@vhack.eu> | 2023-05-20 07:47:28 +0200 |
|---|---|---|
| committer | Soispha <soispha@vhack.eu> | 2023-05-20 08:02:02 +0200 |
| commit | c025d9c51a9fec2fd83cd396df8d348dbcde5a40 (patch) | |
| tree | ff14117d8c06c76ea808dfa8e9a921ec4ee6a5ff /system/services/scanning | |
| parent | Fix(system): Add configs for networkmanager only if it's enabled (diff) | |
| download | nixos-config-c025d9c51a9fec2fd83cd396df8d348dbcde5a40.zip | |
Refactor(system/services/printing): Split printing and scanning
Diffstat (limited to '')
| -rw-r--r-- | system/services/scanning/default.nix | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/system/services/scanning/default.nix b/system/services/scanning/default.nix new file mode 100644 index 00000000..b132e915 --- /dev/null +++ b/system/services/scanning/default.nix @@ -0,0 +1,9 @@ +# vim: ts=2 +{pkgs, ...}: { + hardware = { + sane = { + enable = true; + extraBackends = [pkgs.sane-airscan]; + }; + }; +} |
