omniflake/users/till/system.nix
2026-03-05 09:59:10 +01:00

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
];
};
}