omniflake/users/till/system.nix
2026-01-29 17:22:27 +01:00

16 lines
264 B
Nix

{ pkgs, ... }:
{
users.users.till = {
isNormalUser = true;
description = "Till";
extraGroups = [
"wheel"
"networkmanager"
];
shell = pkgs.fish;
openssh.authorizedKeys.keyFiles = [
./ssh/till${"@"}nova.pub
];
};
}