omniflake/users/till.nix
2026-01-22 16:44:45 +01:00

16 lines
261 B
Nix

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