Files
flake/hosts/modules/users/origami.nix
T
2026-05-17 10:24:49 +08:00

14 lines
327 B
Nix

{ pkgs, ... }:
{
programs.zsh.enable = true;
users.users.origami = {
isNormalUser = true;
shell = pkgs.zsh;
description = "Origami404";
group = "origami";
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJyrUiSdpTC+vP+pNDChehLG+ChYL2By2LtjmVJiHmaf origami@eris"
];
};
}