mirror of
https://github.com/itme-brain/nixos.git
synced 2026-03-24 00:29:43 -04:00
modularized ssh keys
This commit is contained in:
parent
ce0efd2dfe
commit
d578af7b21
4 changed files with 11 additions and 10 deletions
|
|
@ -7,7 +7,7 @@
|
|||
isNormalUser = true;
|
||||
extraGroups = config.user.groups
|
||||
++ [ "video" "audio" "kvm" "libvirtd" "docker" ];
|
||||
openssh.authorizedKeys.keys = config.user.sshKey2;
|
||||
openssh.authorizedKeys.keys = config.user.sshKeys.key2;
|
||||
};
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -19,7 +19,7 @@
|
|||
${config.user.name} = {
|
||||
isNormalUser = true;
|
||||
extraGroups = config.user.groups;
|
||||
openssh.authorizedKeys.keys = config.user.sshKey1;
|
||||
openssh.authorizedKeys.keys = config.user.sshKeys.key1;
|
||||
};
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@
|
|||
${config.user.name} = {
|
||||
isNormalUser = true;
|
||||
extraGroups = config.user.groups;
|
||||
openssh.authorizedKeys.keys = config.user.sshKey1;
|
||||
openssh.authorizedKeys.keys = config.user.sshKeys.key1;
|
||||
};
|
||||
};
|
||||
boot.isContainer = true;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue