aboutsummaryrefslogtreecommitdiffstats
path: root/modules/by-name/sc
diff options
context:
space:
mode:
Diffstat (limited to 'modules/by-name/sc')
-rw-r--r--modules/by-name/sc/scanning/module.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/modules/by-name/sc/scanning/module.nix b/modules/by-name/sc/scanning/module.nix
new file mode 100644
index 00000000..dda507fa
--- /dev/null
+++ b/modules/by-name/sc/scanning/module.nix
@@ -0,0 +1,25 @@
+{
+ config,
+ lib,
+ pkgs,
+ ...
+}: let
+ cfg = config.soispha.services.scanning;
+in {
+ options.soispha.services.scanning = {
+ enable = lib.mkEnableOption "default scanning configuration";
+ };
+
+ config = lib.mkIf cfg.enable {
+ hardware = {
+ sane = {
+ enable = true;
+ extraBackends = [pkgs.sane-airscan];
+ };
+ };
+
+ users.users.soispha.extraGroups = [
+ "scanner" # for permission to access the scanner.
+ ];
+ };
+}