{ lib, localUsername ? lib.my.username, ... }: with lib; let home = "/home/${localUsername}"; in { ark.directories = [ home ]; users = { mutableUsers = false; users = { root.hashedPassword = "@HASHED_PASSWORD@"; ${localUsername} = { isNormalUser = true; uid = 1000; description = my.fullname; inherit home; inherit (my) hashedPassword; openssh.authorizedKeys.keys = [ my.ssh.key ]; extraGroups = [ "wheel" ]; }; }; }; }