nixos/common/user.nix
2023-07-16 16:43:13 +03:00

28 lines
461 B
Nix

{ config, pkgs, ... }:
{
users.users.ivabus = {
isNormalUser = true;
extraGroups = [ "wheel" ];
packages = with pkgs; [
tree
cargo
rustc
neofetch
];
shell = pkgs.zsh;
};
programs.zsh = {
enable = true;
};
programs.gnupg.agent.enable = true;
programs.ssh.startAgent = true;
programs.git = {
enable = true;
userName = "my_git_username";
userEmail = "my_git_username@gmail.com";
};
}