From 2f8ed5a951381a87ba4bcde239e56b5f19b76a0d Mon Sep 17 00:00:00 2001 From: Grisha Shipunov Date: Sun, 2 Nov 2025 23:09:41 +0100 Subject: enable fingerprint sensor --- hosts/toaster/default.nix | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'hosts') diff --git a/hosts/toaster/default.nix b/hosts/toaster/default.nix index 8127f1e..94e4822 100644 --- a/hosts/toaster/default.nix +++ b/hosts/toaster/default.nix @@ -44,7 +44,10 @@ # Select internationalisation properties. i18n = { defaultLocale = "en_US.UTF-8"; - extraLocales = [ "nl_NL.UTF-8/UTF-8" "ru_RU.UTF-8/UTF-8" ]; + extraLocales = [ + "nl_NL.UTF-8/UTF-8" + "ru_RU.UTF-8/UTF-8" + ]; extraLocaleSettings = { LC_ALL = "nl_NL.UTF-8"; }; @@ -55,6 +58,9 @@ boot.kernelModules = [ "i2c-dev" ]; environment.systemPackages = [ pkgs.ddcutil ]; + # fingerprint support + services.fprintd.enable = true; + users.users."0xa" = { extraGroups = [ "wheel" -- cgit v1.3.1