26 lines
603 B
Nix
26 lines
603 B
Nix
{pkgs, ...}: {
|
|
programs.bash = {
|
|
enable = true;
|
|
|
|
shellAliases = {
|
|
a = "echo idssss";
|
|
rb = "sudo nixos-rebuild switch --flake ~/nixdots#";
|
|
nixtest = "sudo nixos-rebuild test --flake ~/nixdots#";
|
|
infect = "nix run github:nix-community/nixos-anywhere -- -- flake";
|
|
};
|
|
|
|
bashrcExtra = ''
|
|
PS1="\[\e[38;5;177m\]\u\[\e[38;5;220m\]@\[\e[38;5;1m\]\h \[\e[38;5;33m\]\w \[\033[0m\]\$ "
|
|
'';
|
|
};
|
|
|
|
programs.git = {
|
|
enable = true;
|
|
settings = {
|
|
user.name = "tulg";
|
|
user.email = "tulg@protonmail.ch";
|
|
};
|
|
};
|
|
|
|
programs.zsh.enable = true;
|
|
}
|