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