nixos/common/user.nix
2023-07-16 19:00:44 +03:00

27 lines
No EOL
395 B
Nix

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