This commit is contained in:
Till 2026-01-29 17:22:27 +01:00
parent 92cfae9488
commit 648602c92e
11 changed files with 13 additions and 19 deletions

16
users/till/system.nix Normal file
View file

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