21 lines
No EOL
419 B
Nix
21 lines
No EOL
419 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
users = {
|
|
groups = {
|
|
remote = {};
|
|
};
|
|
users = {
|
|
in5ar = {
|
|
isNormalUser = true;
|
|
description = "IN5-AR";
|
|
extraGroups = [ "wheel" "docker" "remote"];
|
|
shell = pkgs.fish;
|
|
openssh.authorizedKeys.keys = [
|
|
''ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPg2GEI2xcR0E1LzJWDvF5eHNt93TcYy7W/qEI3XoVWr almiriqi@aqore-nix''
|
|
];
|
|
initialPassword = "ra5ni";
|
|
};
|
|
};
|
|
};
|
|
} |