mirror of
https://github.com/Feliix42/dotfiles.git
synced 2024-11-22 22:16:30 +00:00
20 lines
504 B
Nix
20 lines
504 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
# Enable support for flashing new firmware onto my Moonlander
|
|
hardware.keyboard.zsa.enable = true;
|
|
|
|
services.udev.packages = [ pkgs.libu2f-host ];
|
|
|
|
## enable fingerprint reader
|
|
#services.fprintd.enable = true;
|
|
#security.pam.services.login.fprintAuth = true;
|
|
##security.pam.services.xscreensaver.fprintAuth = true;
|
|
#security.pam.services.sudo.fprintAuth = true;
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
# tool for flashing firmware
|
|
wally-cli
|
|
];
|
|
|
|
}
|