summaryrefslogtreecommitdiff
path: root/hosts/toaster/default.nix
diff options
context:
space:
mode:
authorGrisha Shipunov2025-11-02 23:09:41 +0100
committerGrisha Shipunov2025-11-02 23:10:54 +0100
commit2f8ed5a951381a87ba4bcde239e56b5f19b76a0d (patch)
tree45fd10b9c6daae6cb50471356623c9e9f307f62b /hosts/toaster/default.nix
parent13683101287ff29ef8ed6454e2e271735aa40a60 (diff)
enable fingerprint sensor
Diffstat (limited to 'hosts/toaster/default.nix')
-rw-r--r--hosts/toaster/default.nix8
1 files changed, 7 insertions, 1 deletions
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"