init commit so flakes work
This commit is contained in:
commit
076814d4b9
6 changed files with 106 additions and 0 deletions
12
.modules/users/arouzing.nix
Normal file
12
.modules/users/arouzing.nix
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
_: { config, pkgs, lib, ... }:
|
||||
{
|
||||
users.users.arouzing = {
|
||||
isNormalUser = true;
|
||||
initialPassword = "password~!@~";
|
||||
openssh.authorizedKeys.keys = [
|
||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJAGm66rJsr8vjRCYDkH4lEPncPq27o6BHzpmRmkzOiM"
|
||||
];
|
||||
description = "admin";
|
||||
extraGroups = [ "networkmanager" "wheel" "docker" ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue