all repos — nixfiles @ e096da8828f6ab6b5dc8e978c587cc4b54f55a64

System and user configuration, managed by nix and home-manager

change my user name

Alan Pearce
commit

e096da8828f6ab6b5dc8e978c587cc4b54f55a64

parent

5e3422e48b7f8500444c9a74603b3c9c3c38a26e

1 file changed, 5 insertions(+), 17 deletions(-)

changed files
M system/settings/configuration/user.nixsystem/settings/configuration/user.nix
@@ -1,30 +1,18 @@
+{ ... }: { - config, - pkgs, - ... -}: -{ - users.extraUsers.alan = { - description = "Alan Pearce"; + users.users.alin = { + description = "Alin"; isNormalUser = true; extraGroups = [ "audio" "wheel" - "lp" - "adbusers" - "docker" - "nitrokey" - "dialout" - "pipewire" - "networkmanager" - "libvirtd" "video" ]; initialPassword = "password"; - home = "/home/alan"; + home = "/home/alin"; uid = 1000; openssh.authorizedKeys.keys = [ - "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMvcW4Z9VxOQgEJjsRC1uSMwEJ4vru9BwjT+Z50nawp4 alan" + "ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBJVREjPey2TOIPzfYJoG9yIR4Rui7tNJK2QIKa+pbgsyXg31hhPIw37LRRIic+l53mW8eahHxX3Y1IeTjcMw8IU= alan@secretive.marvin" ]; }; }