about summary refs log tree commit diff stats
path: root/sys/svcs/scanning
diff options
context:
space:
mode:
Diffstat (limited to 'sys/svcs/scanning')
-rw-r--r--sys/svcs/scanning/default.nix12
1 files changed, 12 insertions, 0 deletions
diff --git a/sys/svcs/scanning/default.nix b/sys/svcs/scanning/default.nix
new file mode 100644
index 00000000..6621e08f
--- /dev/null
+++ b/sys/svcs/scanning/default.nix
@@ -0,0 +1,12 @@
+{pkgs, ...}: {
+  hardware = {
+    sane = {
+      enable = true;
+      extraBackends = [pkgs.sane-airscan];
+    };
+  };
+
+  users.users.soispha.extraGroups = [
+    "scanner" # for permission to access the scanner.
+  ];
+}