From cf846175663fc815970e80b8f041c2ef02e6d8d2 Mon Sep 17 00:00:00 2001 From: vorboyvo Date: Sat, 23 Mar 2024 15:52:11 -0400 Subject: [PATCH] Disabled fprintd (fingerprint daemon) since it uh doesn't work. --- configuration.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/configuration.nix b/configuration.nix index 9faa310..03471d4 100644 --- a/configuration.nix +++ b/configuration.nix @@ -94,6 +94,9 @@ alsa.support32Bit = true; pulse.enable = true; }; + + # Enable fingerprint reader + # services.fprintd.enable = true; # Enable Bluetooth. hardware.bluetooth.enable = true; @@ -111,10 +114,7 @@ shell = pkgs.zsh; }; home-manager.users.alice = import ./home.nix; - - # Fingerprint reader stuff - services.fprintd.enable = true; - + # Make sure swaylock works (defined in home.nix) security.pam.services.swaylock = { };