diff --git a/nixos/foxtrot.nix b/nixos/foxtrot.nix index 370c6fd..bb99e79 100644 --- a/nixos/foxtrot.nix +++ b/nixos/foxtrot.nix @@ -193,6 +193,14 @@ in { services.fprintd = { enable = true; + package = pkgs.fprintd.overrideAttrs { + # Source: https://github.com/NixOS/nixpkgs/commit/87ca2dc071581aea0e691c730d6844f1beb07c9f + mesonCheckFlags = [ + # PAM related checks are timing out + "--no-suite" + "fprintd:TestPamFprintd" + ]; + }; # tod.enable = true; # tod.driver = pkgs.libfprint-2-tod1-goodix; }; diff --git a/overlays/default.nix b/overlays/default.nix index adb1f98..a63a91f 100644 --- a/overlays/default.nix +++ b/overlays/default.nix @@ -13,14 +13,6 @@ # You can change versions, add patches, set compilation flags, anything really. # https://nixos.wiki/wiki/Overlays modifications = final: prev: { - final.fprintd = prev.fprintd.overrideAttrs { - # Source: https://github.com/NixOS/nixpkgs/commit/87ca2dc071581aea0e691c730d6844f1beb07c9f - mesonCheckFlags = [ - # PAM related checks are timing out - "--no-suite" - "fprintd:TestPamFprintd" - ]; - }; pythonPackagesExtensions = prev.pythonPackagesExtensions ++ [