This commit is contained in:
Vivian 2023-11-07 14:37:09 +01:00
parent 9ddd2abe84
commit 318af67a0d
4 changed files with 45 additions and 28 deletions

View file

@ -1,5 +1,5 @@
{ config, pkgs, lib, ... }: {
imports = [ ./laura.nix ./victor.nix ];
imports = [ ./laura.nix ./victor.nix ./jonathan.nix ];
# Setup ZSH to use grml config
programs.zsh = {

View file

@ -0,0 +1,13 @@
{ pkgs, ... }: {
users.extraUsers.jonathan = {
isNormalUser = true;
shell = pkgs.zsh;
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOAXOTU6E06zjK/zkzlSPhTG35PoNRYgTCStEPUYyjeE jonathan@kili"
];
extraGroups = [ ];
};
}