1
0
Files
nix-shared/system/linux/user-tb.nix

15 lines
431 B
Nix
Raw Normal View History

2025-11-04 18:50:32 -08:00
{ ... }:
{
# Define a user account. Don't forget to set a password with passwd.
users.users.tb = {
isNormalUser = true;
description = "Timo Bingmann";
uid = 7777;
group = "users";
extraGroups = [ "wheel" "networkmanager" "video" "docker" "scanner" ];
home = "/home/tb";
homeMode = "711";
hashedPassword = "$y$j9T$wYCQHfl0OyCyXBQRo7aOe.$5LY3ulvc1uKT/Squ7VSVSXvMR/FRg2MUbOmUfnN5CR7";
};
}