From e244990289c4eaf93cd9292eee01f786ab6f9949 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9ana=20=E6=B1=9F?= Date: Sat, 6 Sep 2025 10:54:52 +0800 Subject: [PATCH] doc: note why we should not set users.mutableUsers to false --- nix/configurations/vanadium/nixos/misc.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/nix/configurations/vanadium/nixos/misc.nix b/nix/configurations/vanadium/nixos/misc.nix index db83b159..a0795332 100644 --- a/nix/configurations/vanadium/nixos/misc.nix +++ b/nix/configurations/vanadium/nixos/misc.nix @@ -13,4 +13,8 @@ # https://community.frame.work/t/stability-issues-random-crashes-reboots-and-boot-freezes/62675/4 "pcie_aspm=off" ]; + + # I have learned my lesson + # NEVER set this to true. It would change the password to ! and you can't login + # users.mutableUsers = false; }