16 lines
268 B
Nix
16 lines
268 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
users.users.till = {
|
|
isNormalUser = true;
|
|
description = "Till";
|
|
extraGroups = [
|
|
"wheel"
|
|
"networkmanager"
|
|
];
|
|
shell = pkgs.fish;
|
|
openssh.authorizedKeys.keyFiles = [
|
|
./pubkeys/till${"@"}nova.pub
|
|
];
|
|
};
|
|
}
|