summaryrefslogtreecommitdiff
path: root/sys/hardware/epson.nix
diff options
context:
space:
mode:
authorAlejandro Soto <alejandro@34project.org>2024-12-03 17:30:42 -0600
committerAlejandro Soto <alejandro@34project.org>2024-12-03 23:10:42 -0600
commit771624767c3d916e2c77d352e71c07bffca8da59 (patch)
tree6e7808948a7f9416a8880d07ae7e32f02aeecf37 /sys/hardware/epson.nix
parentcadbe2cdcc16836cda8f936e3c61c28d3ba2cba5 (diff)
sys/platform/[lustrated]: initial commit, adapted from old [lustrated] repo
Diffstat (limited to 'sys/hardware/epson.nix')
-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
+ ];
+ };
};
}