users: init adrlau
This commit is contained in:
parent
daaa603dc5
commit
eda580dbc3
|
@ -13,6 +13,7 @@
|
|||
../../users/daniel
|
||||
../../users/eirikwit
|
||||
../../users/h7x4
|
||||
../../users/adrlau
|
||||
|
||||
../../profiles/shell.nix
|
||||
|
||||
|
|
|
@ -31,6 +31,7 @@
|
|||
../../users/daniel
|
||||
../../users/eirikwit
|
||||
../../users/h7x4
|
||||
../../users/adrlau
|
||||
|
||||
../../profiles/shell.nix
|
||||
|
||||
|
|
|
@ -0,0 +1,20 @@
|
|||
{ config, pkgs, lib, ... }:
|
||||
{
|
||||
/* programs.zsh.enable = true; */
|
||||
|
||||
users.users.adrlau = {
|
||||
isNormalUser = true;
|
||||
uid = 1007;
|
||||
description = "Adrian";
|
||||
extraGroups = [ "wheel" ]; # TODO: NAS stuff
|
||||
/* shell = pkgs.zsh; */
|
||||
|
||||
openssh.authorizedKeys.keys = [
|
||||
# https://github.com/adrlau.keys
|
||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFa5y7KyLn2tjxed1czMbyM5scnEpo9v/GfnhL/28ckM"
|
||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICf7SlyHR6KgP7+IeFr/Iuiu2lL5vaSlzqPonaO8XU0J"
|
||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEj+Y0RUrSaF8gUW8m2BY6i8e7/0bUWhu8u8KW+AoHDh"
|
||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIHTExYoT3+flrd2wPYiT7sFFDmAUqi2YAz0ldQg7WMop"
|
||||
];
|
||||
};
|
||||
}
|
|
@ -6,7 +6,7 @@
|
|||
isNormalUser = true;
|
||||
uid = 1003;
|
||||
description = "daniel";
|
||||
extraGroups = [ "networkmanager" "wheel" ]; # TODO: NAS stuff
|
||||
extraGroups = [ "wheel" ]; # TODO: NAS stuff
|
||||
shell = pkgs.zsh;
|
||||
packages = with pkgs; [
|
||||
kitty.terminfo
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
isNormalUser = true;
|
||||
uid = 1005;
|
||||
description = "eirik";
|
||||
extraGroups = [ "networkmanager" "wheel" ]; # TODO: NAS stuff
|
||||
extraGroups = [ "wheel" ]; # TODO: NAS stuff
|
||||
shell = pkgs.zsh;
|
||||
|
||||
openssh.authorizedKeys.keys = [
|
||||
|
|
|
@ -5,8 +5,8 @@
|
|||
users.users.h7x4 = {
|
||||
isNormalUser = true;
|
||||
uid = 1006;
|
||||
description = "øystein";
|
||||
extraGroups = [ "networkmanager" "wheel" ]; # TODO: NAS stuff
|
||||
description = "Øystein";
|
||||
extraGroups = [ "wheel" ]; # TODO: NAS stuff
|
||||
shell = pkgs.zsh;
|
||||
|
||||
openssh.authorizedKeys.keys = [
|
||||
|
|
Loading…
Reference in New Issue