fingerprints :)

This commit is contained in:
KoenDR06 2025-11-09 22:06:53 +01:00
parent 7bca3bbe77
commit 311cb2620a
4 changed files with 26 additions and 1 deletions

View file

@ -4,7 +4,7 @@
];
config.horseman = {
catppuccin.flavor = "macchiato";
catppuccin.flavor = "mocha";
users.default.enable = true;
@ -40,6 +40,7 @@
audio.enable = true;
bluetooth.enable = true;
wifi.enable = true;
fingerprint.enable = true;
};
network = {

View file

@ -4,5 +4,6 @@
./bluetooth.nix
./gpu/nvidia.nix
./wifi.nix
./fingerprint.nix
];
}

View file

@ -0,0 +1,18 @@
{
lib,
config,
...
}: let
inherit (lib) mkEnableOption mkIf;
cfg = config.horseman.hardware.fingerprint;
in {
options = {
horseman.hardware.fingerprint = {
enable = mkEnableOption "Enables fingerprint support";
};
};
config = mkIf cfg.enable {
services.fprintd.enable = true;
};
}

View file

@ -13,6 +13,11 @@
2. Create a new machine entry in the [syncthing module](./modules/network/syncthing.nix).
3. Add the new device to folders.
## Fingerprints
1. Run `fprintd-enroll --finger <FINGER>`
# Apps
## Firefox