diff options
| author | Rose Hogenson <rosehogenson@posteo.net> | 2025-11-21 18:44:58 -0800 |
|---|---|---|
| committer | Rose Hogenson <rosehogenson@posteo.net> | 2025-11-21 18:44:58 -0800 |
| commit | 0d640e791493de79b43b050a13b1cf9c081854ec (patch) | |
| tree | e545cc0db40612260c8a1995d38f6bb600a87c2f /flake.nix | |
| parent | Use a weird encoding for the time.Time (diff) | |
| download | roseh.moe-0d640e791493de79b43b050a13b1cf9c081854ec.tar.zst | |
Simplify the password hash and get rid of pbkdf2
Since the password already has 16 bytes of security, pbkdf2 isn't
necessary here. We can use a simple sha256. I promise to pick a
secure password.
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -48,7 +48,7 @@ # remember to bump this hash when your dependencies change. # vendorHash = pkgs.lib.fakeHash; - vendorHash = "sha256-/Ciog57YcusaM8PvTRnBgxKcbNgxot4R8PhImu5m3Us="; + vendorHash = "sha256-Rrtcdtprg0y3oNtCbxvF4QVIGFbx+je6BcQGymsxpIA="; }; }); |
