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