2017-12-24 02:20:36 +01:00
|
|
|
{ config, lib, pkgs, ... }:
|
2016-02-24 19:41:24 +01:00
|
|
|
|
|
|
|
{
|
2017-12-24 02:13:08 +01:00
|
|
|
imports = [ ../. ];
|
2017-09-03 23:25:33 +02:00
|
|
|
|
2016-04-21 13:38:40 +02:00
|
|
|
# hard disk protection if the laptop falls
|
2017-12-24 02:20:36 +01:00
|
|
|
services.hdapsd.enable = lib.mkDefault true;
|
2016-04-21 13:38:40 +02:00
|
|
|
|
|
|
|
# fingerprint reader: login and unlock with fingerprint (if you add one with `fprintd-enroll`)
|
|
|
|
#services.fprintd.enable = true;
|
|
|
|
#security.pam.services.login.fprintAuth = true;
|
|
|
|
#security.pam.services.xscreensaver.fprintAuth = true;
|
|
|
|
# similarly for other PAM providers
|
2017-12-24 02:13:08 +01:00
|
|
|
|
|
|
|
services.xserver.videoDrivers = [ "intel" ];
|
2016-02-24 19:41:24 +01:00
|
|
|
}
|