added spider host
This commit is contained in:
parent
fa905d2cb6
commit
57f2638f0e
8 changed files with 157 additions and 1 deletions
10
hosts/common/optional/fingerprint.nix
Normal file
10
hosts/common/optional/fingerprint.nix
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
{pkgs, ...}:{
|
||||
# Fingerprint Scanner
|
||||
systemd.services.fprintd = {
|
||||
wantedBy = [ "multi-user.target" ];
|
||||
serviceConfig.Type = "simple";
|
||||
};
|
||||
services.fprintd.enable = true;
|
||||
services.fprintd.tod.enable = true;
|
||||
services.fprintd.tod.driver = pkgs.libfprint-2-tod1-vfs0090;
|
||||
}
|
||||
6
hosts/common/optional/thinkpad.nix
Normal file
6
hosts/common/optional/thinkpad.nix
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{lib, config, ...}:{
|
||||
# Thinkpad
|
||||
hardware.sensor.iio.enable = true;
|
||||
hardware.trackpoint.enable = lib.mkDefault true;
|
||||
hardware.trackpoint.emulateWheel = lib.mkDefault config.hardware.trackpoint.enable;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue