blob: 0e2d36c290386677aa1ca085148e79a74c24bb29 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
{ ... }:
{
users.users.ks = {
isNormalUser = true;
extraGroups = [
"wheel"
"ocp"
];
#initialPassword = "password";
openssh.authorizedKeys.keys = [ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPUDh1WPUF6mPQ1E38ozUjY/DZhEbwZL37eZ51DgpuLo ks" ];
};
home-manager.users.ks = {
programs.git = {
enable = true;
userName = "Kinoshita Shimizu";
userEmail = "ks@kinoshitaproductions.com";
extraConfig = {
safe = {
directory = "/";
};
};
};
home.stateVersion = "22.11";
};
}
|