2017-12-23 20:20:36 -05:00
|
|
|
{ config, lib, pkgs, ... }:
|
2016-02-24 13:41:24 -05:00
|
|
|
|
|
|
|
{
|
2017-12-23 20:13:08 -05:00
|
|
|
imports = [ ../. ];
|
2017-09-03 17:25:33 -04:00
|
|
|
|
2016-04-21 07:38:40 -04:00
|
|
|
# hard disk protection if the laptop falls
|
2017-12-23 20:20:36 -05:00
|
|
|
services.hdapsd.enable = lib.mkDefault true;
|
2016-04-21 07:38:40 -04: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-23 20:13:08 -05:00
|
|
|
|
|
|
|
services.xserver.videoDrivers = [ "intel" ];
|
2016-02-24 13:41:24 -05:00
|
|
|
}
|