config/systems/desktop/users.nix

12 lines
263 B
Nix
Raw Permalink Normal View History

2024-09-15 12:56:25 +01:00
{ pkgs, username, ... }:
{
users.users.${username} = {
isNormalUser = true;
shell = pkgs.zsh;
description = "Madeleine";
extraGroups = [ "dialout" "plugdev" ];
openssh.authorizedKeys.keyFiles = [ ../../homes/common/ssh/maddie.pub ];
};
}