aboutsummaryrefslogtreecommitdiffstats
path: root/hosts/common/optional/google-authenticator.nix
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--hosts/common/optional/google-authenticator.nix11
1 files changed, 5 insertions, 6 deletions
diff --git a/hosts/common/optional/google-authenticator.nix b/hosts/common/optional/google-authenticator.nix
index 7380d1b..721346e 100644
--- a/hosts/common/optional/google-authenticator.nix
+++ b/hosts/common/optional/google-authenticator.nix
@@ -1,15 +1,14 @@
{ pkgs, ... }:
{
- environment.systemPackages = builtins.attrValues {
- inherit (pkgs)
- #other
- google-authenticator;
- };
+ environment.systemPackages = [
+ #pkgs.other
+ pkgs.google-authenticator
+ ];
security.pam.services = {
chfn.googleAuthenticator.enable = true;
chsh.googleAuthenticator.enable = true;
- cups.googleAuthenticator.enable = true;
+ #cups.googleAuthenticator.enable = true;
lightdm.googleAuthenticator.enable = true;
login.googleAuthenticator.enable = true;
other.googleAuthenticator.enable = true;