added user config

This commit is contained in:
2026-07-01 19:30:05 +01:00
parent 4fd7db083b
commit 8b04d1763e
3 changed files with 32 additions and 1 deletions

View File

@@ -0,0 +1,15 @@
{
self,
inputs,
...
}: {
flake.nixosModules.userConfiguration = {
pkgs,
lib,
...
}: {
users.users.user01 = {
initialPassword = "password";
};
};
}