summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAlan Pearce2018-08-28 14:13:05 +0200
committerAlan Pearce2018-08-28 14:13:05 +0200
commit10888ffca2dbe39721a0b62766c34b97bce8fb08 (patch)
treeced7f61e6b130f8132d877201fb084cd8e912c78
parent14e0c9b4e1b0212e998d1a79697d3c82f319713b (diff)
downloadnixos-configuration-10888ffca2dbe39721a0b62766c34b97bce8fb08.tar.lz
nixos-configuration-10888ffca2dbe39721a0b62766c34b97bce8fb08.tar.zst
nixos-configuration-10888ffca2dbe39721a0b62766c34b97bce8fb08.zip
satoshipay: continue using overriden printer drivers
-rw-r--r--modules/satoshipay.nix10
1 files changed, 8 insertions, 2 deletions
diff --git a/modules/satoshipay.nix b/modules/satoshipay.nix
index bbde34e..075ae3c 100644
--- a/modules/satoshipay.nix
+++ b/modules/satoshipay.nix
@@ -1,4 +1,4 @@
-{ config, pkgs, lib, ... }:
+{ config, pkgs, fetchurl, lib, ... }:
 
 { virtualisation = {
     docker = {
@@ -65,7 +65,13 @@
 
 
   services.printing.drivers = with pkgs; [
-    unstable.cups-toshiba-estudio
+    (cups-toshiba-estudio.overrideAttrs (oldAttrs: {
+      version = "7.89";
+      src = pkgs.fetchurl {
+        url = http://business.toshiba.com/downloads/KB/f1Ulds/15178/TOSHIBA_ColorMFP_CUPS.tar;
+        sha256 = "0qz4r7q55i0adf4fv3aqnfqgi2pz3jb1jixkqm9x6nk4vanyjf4r";
+      };
+    }))
   ];
 
   networking.domain = "satoshipay.io";