first commit
This commit is contained in:
commit
21737592da
27 changed files with 744 additions and 0 deletions
21
servers/common/users.nix
Normal file
21
servers/common/users.nix
Normal 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";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue