hosts: *: intial try remoteBuilder
This commit is contained in:
14
modules/hardware/remoteBuilder.nix
Normal file
14
modules/hardware/remoteBuilder.nix
Normal file
@@ -0,0 +1,14 @@
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
users.users.nixremote = { # System User
|
||||
isNormalUser = true;
|
||||
extraGroups = [ "kvm" ];
|
||||
shell = pkgs.zsh; # Default shell
|
||||
uid = 1001;
|
||||
# initialPassword = "password95";
|
||||
openssh.authorizedKeys.keys = [
|
||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILczsj4W1kFQaalFwaY+RJ4LEzNeFKD+itXB40Q2O59M nixremote@hades"
|
||||
];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user