Uh, nevermind on the fingerprint thing :woozy:
This commit is contained in:
parent
e3dc1908af
commit
c399ffcdbd
|
@ -20,7 +20,6 @@
|
|||
office.enable = true;
|
||||
pandoc.enable = true;
|
||||
};
|
||||
services.fprintd.enable = true;
|
||||
ui = {
|
||||
flatpak.enable = true;
|
||||
gnome.enable = true;
|
||||
|
|
|
@ -36,7 +36,6 @@ in
|
|||
pandoc.enable = true;
|
||||
recording.enable = true;
|
||||
};
|
||||
services.fprintd.enable = true;
|
||||
ui = {
|
||||
flatpak.enable = true;
|
||||
gnome.enable = true;
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
imports = [
|
||||
./apcupsd.nix
|
||||
./duplicacy-web.nix
|
||||
./fprintd.nix
|
||||
./k3s.nix
|
||||
./msmtp.nix
|
||||
];
|
||||
|
|
|
@ -1,21 +0,0 @@
|
|||
{ pkgs, config, lib, ... }:
|
||||
let
|
||||
cfg = config.host.services.fprintd;
|
||||
in
|
||||
with lib;
|
||||
{
|
||||
options = {
|
||||
host.services.fprintd.enable = mkEnableOption (mdDoc "Enables fingerprint recognition");
|
||||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
services.fprintd = {
|
||||
enable = true;
|
||||
tod = {
|
||||
enable = true;
|
||||
driver = pkgs.libfprint-2-tod1-elan;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue