mirror of
https://github.com/ivabus/nixos
synced 2024-11-22 08:25:07 +03:00
28 lines
No EOL
451 B
Nix
28 lines
No EOL
451 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 = "Ivan Bushchik";
|
|
userEmail = "ivabus@ivabus.dev";
|
|
};
|
|
} |