2022-07-31 23:06:16 -07:00
|
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
|
|
|
|
{
|
2023-05-27 20:34:18 -07:00
|
|
|
|
programs.zsh.enable = true;
|
|
|
|
|
|
|
2022-07-31 23:06:16 -07:00
|
|
|
|
users.users.haak = {
|
|
|
|
|
|
isNormalUser = true;
|
|
|
|
|
|
extraGroups = [
|
|
|
|
|
|
"wheel" # Enable ‘sudo’ for the user.
|
|
|
|
|
|
"networkmanager" # Allow the user to manage networks
|
|
|
|
|
|
];
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2022-08-09 17:36:58 -07:00
|
|
|
|
# run the following command to swap escape and caps-lock keys, like a
|
|
|
|
|
|
# civilized person:
|
|
|
|
|
|
services.xserver.xkbOptions = "caps:swapescape";
|
|
|
|
|
|
|
2022-07-31 23:06:16 -07:00
|
|
|
|
users.extraUsers.haak = {
|
|
|
|
|
|
shell = pkgs.zsh;
|
|
|
|
|
|
};
|
|
|
|
|
|
}
|