From 1572589ea1efa7da76e23c0b302852650d5bba8d Mon Sep 17 00:00:00 2001 From: Olivier <1+olivier@noreply.raspot.in> Date: Wed, 19 Aug 2026 09:52:53 +0200 Subject: [PATCH] =?UTF-8?q?T=C3=A9l=C3=A9verser=20les=20fichiers=20vers=20?= =?UTF-8?q?"modules"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- modules/security.nix | 6 ++++++ modules/workstation-setup.nix | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/modules/security.nix b/modules/security.nix index ae78033..15efa31 100644 --- a/modules/security.nix +++ b/modules/security.nix @@ -35,4 +35,10 @@ userverification = 0; }; }; + # Le changement de mot de passe via `passwd` doit rester une opération + # PAM/Unix classique. Le module U2F global ne doit pas intercepter + # l'authentification demandée par `passwd`, sinon le helper attend une + # interaction FIDO2 qu'il ne doit pas gérer à cette étape. + security.pam.services.passwd.u2f.enable = false; + } \ No newline at end of file diff --git a/modules/workstation-setup.nix b/modules/workstation-setup.nix index ed748ee..6849633 100644 --- a/modules/workstation-setup.nix +++ b/modules/workstation-setup.nix @@ -232,7 +232,7 @@ let workstationSetup = pkgs.stdenv.mkDerivation { pname = "nixos-workstations-setup"; - version = "1.2.0"; + version = "1.3.0"; src = ../workstation-setup;