File tree 1 file changed +6
-16
lines changed
1 file changed +6
-16
lines changed Original file line number Diff line number Diff line change @@ -84,24 +84,14 @@ Install packages:
84
84
85
85
#### NixOS
86
86
87
- - Enable fprintd as usual via ` services.fprintd.enable = true; `
88
- - Apply this overlay (possibly update rev and sha256, if necessary) :
87
+ NixOS has the tod module in nixpkgs-unstable (merged June 2021).
88
+ On release 21.05 or newer, and assuming ` pkgsUnstable ` is an unstable nixpkgs, configure like this :
89
89
90
90
```
91
- self: super: {
92
- libfprint = super.libfprint.overrideAttrs (
93
- up: {
94
- version = "1.90.1+vfs0090.1";
95
- src = super.fetchFromGitHub {
96
- owner = "3v1n0";
97
- repo = "libfprint";
98
- rev = "48f3bb005d256477658273f0592442143740408e";
99
- sha256 = "sha256-Ari94tq9Q7LAxh/TOdoRG9J3kAzEnitwwPA5E5HFxxc=";
100
- fetchSubmodules = true;
101
- };
102
- buildInputs = up.buildInputs ++ ([ self.openssl ]);
103
- }
104
- );
91
+ {
92
+ services.fprintd.enable = true;
93
+ services.fprintd.tod.enable = true;
94
+ services.fprintd.tod.driver = pkgsUnstable.libfprint-2-tod1-vfs0090;
105
95
}
106
96
```
107
97
You can’t perform that action at this time.
0 commit comments