mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 12:29:19 -08:00
11 lines
278 B
Nix
11 lines
278 B
Nix
({pkgs, ...}: {
|
|
users.users.arc = {
|
|
uid = 1001;
|
|
isNormalUser = true;
|
|
extraGroups = ["wheel"];
|
|
openssh.authorizedKeys.keys = [
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJ8Z6briIboxIdedPGObEWB6QEQkvxKvnMW/UVU9t/ac mew-pgp"
|
|
];
|
|
shell = pkgs.zsh;
|
|
};
|
|
})
|