mirror of
https://github.com/buckley310/nixos-config.git
synced 2024-11-09 18:47:02 +00:00
ScanSnap S1300 module
This commit is contained in:
parent
1828bf4230
commit
9dcb0573bd
2 changed files with 20 additions and 0 deletions
|
@ -30,6 +30,7 @@ in
|
|||
./modules/baseline.nix
|
||||
./modules/cli.nix
|
||||
./modules/flakes.nix
|
||||
./modules/scansnap_s1300.nix
|
||||
./modules/scroll-boost
|
||||
./modules/status-on-console.nix
|
||||
];
|
||||
|
|
19
modules/scansnap_s1300.nix
Normal file
19
modules/scansnap_s1300.nix
Normal file
|
@ -0,0 +1,19 @@
|
|||
{ config, pkgs, lib, ... }:
|
||||
let
|
||||
cfg = config.sconfig.scansnap-s1300;
|
||||
in
|
||||
{
|
||||
options.sconfig.scansnap-s1300 = lib.mkEnableOption "Enable S1300 Scanning";
|
||||
|
||||
config = lib.mkIf cfg {
|
||||
hardware.sane.enable = true;
|
||||
nixpkgs.config.sane.extraFirmware = [{
|
||||
name = "1300_0C26.nal";
|
||||
backend = "epjitsu";
|
||||
src = pkgs.fetchurl {
|
||||
url = "https://raw.githubusercontent.com/stevleibelt/scansnap-firmware/96c3a8b2a4e4f1ccc4e5827c5eb5598084fd17c8/1300_0C26.nal";
|
||||
sha256 = "d693c9150fb00442d3f33f103ffb028410cd3cc53cf3d6df0817fb9d596b17f3";
|
||||
};
|
||||
}];
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue