summary refs log tree commit diff
path: root/nixos/modules/services/hardware
diff options
context:
space:
mode:
authorSymphorien Gibol <symphorien+git@xlumurb.eu>2021-02-19 18:04:09 +0100
committerSymphorien Gibol <symphorien+git@xlumurb.eu>2021-03-21 11:07:14 +0100
commitc20cd1834f675153f87bb8544053b4069688f0c8 (patch)
tree45a30277e0762721da2d8ffc6aecc48b12552f48 /nixos/modules/services/hardware
parentf5e8bdd07d1afaabf6b37afc5497b1e498b8046f (diff)
downloadnixpkgs-c20cd1834f675153f87bb8544053b4069688f0c8.tar
nixpkgs-c20cd1834f675153f87bb8544053b4069688f0c8.tar.gz
nixpkgs-c20cd1834f675153f87bb8544053b4069688f0c8.tar.bz2
nixpkgs-c20cd1834f675153f87bb8544053b4069688f0c8.tar.lz
nixpkgs-c20cd1834f675153f87bb8544053b4069688f0c8.tar.xz
nixpkgs-c20cd1834f675153f87bb8544053b4069688f0c8.tar.zst
nixpkgs-c20cd1834f675153f87bb8544053b4069688f0c8.zip
sane-backends: 1.0.30 -> 1.0.32
sane-backends-git: remove, it's not updated often enough to be useful
Diffstat (limited to 'nixos/modules/services/hardware')
-rw-r--r--nixos/modules/services/hardware/sane.nix4
1 files changed, 1 insertions, 3 deletions
diff --git a/nixos/modules/services/hardware/sane.nix b/nixos/modules/services/hardware/sane.nix
index 03070a8f9e7..29e5fbaee6b 100644
--- a/nixos/modules/services/hardware/sane.nix
+++ b/nixos/modules/services/hardware/sane.nix
@@ -4,9 +4,7 @@ with lib;
 
 let
 
-  pkg = if config.hardware.sane.snapshot
-    then pkgs.sane-backends-git
-    else pkgs.sane-backends;
+  pkg = pkgs.sane-backends;
 
   sanedConf = pkgs.writeTextFile {
     name = "saned.conf";