feat(puzzlevision): add zen browser and remove firefox

feat: implement super basic Yubikey configuration
This commit is contained in:
Jo 2024-12-14 00:45:35 +01:00
parent 9a1f243b49
commit a5b583f43a
5 changed files with 51 additions and 8 deletions

View file

@ -21,7 +21,7 @@ in
config = mkIf cfg.enable {
environment.systemPackages = with pkgs; [ yubikey-manager yubioath-flutter ];
services.udev.packages = [ pkgs.yubikey-personalization ];
services.pcscd.enable = true;
@ -30,11 +30,9 @@ in
enableSSHSupport = true;
};
security.pam.yubico = {
enable = true;
debug = false;
mode = "challenge-response";
id = cfg.key-id;
security.pam.services = {
login.u2fAuth = true;
sudo.u2fAuth = true;
};
};
}