mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 20:39:18 -08:00
12 lines
258 B
Nix
12 lines
258 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
users.users.arc = {
|
|
uid = 1001;
|
|
isNormalUser = true;
|
|
openssh.authorizedKeys.keys = [
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJ8Z6briIboxIdedPGObEWB6QEQkvxKvnMW/UVU9t/ac mew-pgp"
|
|
];
|
|
shell = pkgs.zsh;
|
|
};
|
|
}
|