first commit

This commit is contained in:
emptyynes 2025-09-17 16:39:03 +07:00
commit 21737592da
27 changed files with 744 additions and 0 deletions

21
servers/common/users.nix Normal file
View file

@ -0,0 +1,21 @@
{ 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";
};
};
};
}