nixfiles/common/users/qenya.nix

18 lines
376 B
Nix

{ config, lib, pkgs, ... }:
let keys = import ../../keys.nix;
in {
users.users.qenya = {
isNormalUser = true;
home = "/home/qenya";
extraGroups = [
"wheel" # sudo
"networkmanager" # UI wifi configuration
"dialout" # access to serial ports
];
shell = pkgs.zsh;
openssh.authorizedKeys.keys = keys.users.qenya;
uid = 1001;
};
}