aboutsummaryrefslogtreecommitdiffstats
path: root/hosts/common/optional/google-authenticator.nix
blob: 87e43fd4870bc5e49d8c174b0a841e4753c99960 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ pkgs, ... }:
{
  environment = {
    etc."pam.d/xscreensaver".source = "/etc/static/pam.d/xlock";
    systemPackages = [
      #pkgs.other
      pkgs.google-authenticator
    ];
  };

  security.pam.services = {
    chfn.googleAuthenticator.enable = true;
    chsh.googleAuthenticator.enable = true;
    #cups.googleAuthenticator.enable = true;
    lightdm.googleAuthenticator.enable = true;
    login.googleAuthenticator.enable = true;
    other.googleAuthenticator.enable = true;
    sshd.googleAuthenticator.enable = true;
    su.googleAuthenticator.enable = true;
    sudo.googleAuthenticator.enable = true;
    vlock.googleAuthenticator.enable = true;
    xlock.googleAuthenticator.enable = true;
    xscreensaver.googleAuthenticator.enable = true;
  };
}