add user for mrflos on arachnide server
This commit is contained in:
parent
c850c0f907
commit
3e467230b1
1 changed files with 14 additions and 1 deletions
|
@ -85,12 +85,25 @@
|
||||||
# Configure console keymap
|
# Configure console keymap
|
||||||
console.keyMap = "fr";
|
console.keyMap = "fr";
|
||||||
|
|
||||||
# Define a user account. Don't forget to set a password with 'passwd'.
|
# Define user accounts. Don't forget to set a password with 'passwd'.
|
||||||
users.users.douzeb = {
|
users.users.douzeb = {
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
description = "douze baie";
|
description = "douze baie";
|
||||||
extraGroups = [ "networkmanager" "wheel" ];
|
extraGroups = [ "networkmanager" "wheel" ];
|
||||||
packages = with pkgs; [];
|
packages = with pkgs; [];
|
||||||
|
openssh.authorizedKeys.keys = [
|
||||||
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILRG0CyeeMMrrjTTm/PHgRXD/I4lH/bBPBCGUiL+cBdq douzeb@tux-12"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
|
users.users.mrflos = {
|
||||||
|
isNormalUser = true;
|
||||||
|
description = "mr flos";
|
||||||
|
extraGroups = [ "networkmanager" "wheel" ];
|
||||||
|
packages = with pkgs; [];
|
||||||
|
openssh.authorizedKeys.keys = [
|
||||||
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIBBM+2TwkopAQF7splTWjORQoxjcp67VhodwzvTMlL8g florian@florian-LinuxMint-MBP"
|
||||||
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
# Passwordless sudo for members of the wheel group
|
# Passwordless sudo for members of the wheel group
|
||||||
|
|
Loading…
Reference in a new issue