diff --git a/hosts/Dimaga/default.nix b/hosts/Dimaga/default.nix index 4d56f08..4a1acb2 100644 --- a/hosts/Dimaga/default.nix +++ b/hosts/Dimaga/default.nix @@ -20,7 +20,6 @@ office.enable = true; pandoc.enable = true; }; - services.fprintd.enable = true; ui = { flatpak.enable = true; gnome.enable = true; diff --git a/hosts/Shura/default.nix b/hosts/Shura/default.nix index a66580e..0fdecb9 100644 --- a/hosts/Shura/default.nix +++ b/hosts/Shura/default.nix @@ -36,7 +36,6 @@ in pandoc.enable = true; recording.enable = true; }; - services.fprintd.enable = true; ui = { flatpak.enable = true; gnome.enable = true; diff --git a/modules/services/default.nix b/modules/services/default.nix index 3882ec9..e0a4a78 100644 --- a/modules/services/default.nix +++ b/modules/services/default.nix @@ -2,7 +2,6 @@ imports = [ ./apcupsd.nix ./duplicacy-web.nix - ./fprintd.nix ./k3s.nix ./msmtp.nix ]; diff --git a/modules/services/fprintd.nix b/modules/services/fprintd.nix deleted file mode 100644 index 94227f1..0000000 --- a/modules/services/fprintd.nix +++ /dev/null @@ -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; - }; - }; - }; -} \ No newline at end of file