summaryrefslogtreecommitdiff
path: root/sys/hardware
diff options
context:
space:
mode:
Diffstat (limited to 'sys/hardware')
-rw-r--r--sys/hardware/epson.nix21
1 files changed, 13 insertions, 8 deletions
diff --git a/sys/hardware/epson.nix b/sys/hardware/epson.nix
index 3900a2c..66304f9 100644
--- a/sys/hardware/epson.nix
+++ b/sys/hardware/epson.nix
@@ -15,15 +15,20 @@ in
}
];
- services.printing.enable = true;
- hardware.sane.enable = true;
+ hardware.sane = {
+ enable = true;
- hardware.sane.extraBackends = [
- pkgs.epkowa
- ];
+ extraBackends = [
+ pkgs.epkowa
+ ];
+ };
- services.printing.drivers = [
- pkgs.epson_201207w
- ];
+ services.printing = {
+ enable = true;
+
+ drivers = [
+ pkgs.epson_201207w
+ ];
+ };
};
}