From 4f3773075ebf13cbf8127936908baa0dad0bb2d4 Mon Sep 17 00:00:00 2001 From: NullBite Date: Sat, 20 Apr 2024 04:27:20 -0400 Subject: [PATCH] system: make initial password mkDefault --- system/common/me.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/common/me.nix b/system/common/me.nix index 0ece4af..e545f1a 100644 --- a/system/common/me.nix +++ b/system/common/me.nix @@ -16,7 +16,7 @@ in packages = with pkgs; [ keychain ]; - initialPassword = "changeme"; + initialPassword = lib.mkDefault "changeme"; shell = pkgs.zsh; };