All checks were successful
Build iso when a new version is pushed / test (push) Successful in 2m0s
21 lines
422 B
Nix
21 lines
422 B
Nix
{ ... }:
|
|
{
|
|
home.shell.enableBashIntegration = true;
|
|
home.shellAliases = {
|
|
ls= "ls --color=auto";
|
|
grep = "grep --color=auto";
|
|
vim = "nvim";
|
|
vi = "nvim";
|
|
hl = "Hyprland";
|
|
clr = "clear";
|
|
noidle = "systemctl --user stop hypridle";
|
|
};
|
|
|
|
programs.bash = {
|
|
enable = true;
|
|
historyControl = ["ignoreboth"];
|
|
historyIgnore = [ "ls" "cd" "exit" ];
|
|
shellOptions = [ "cdspell" "autocd"];
|
|
};
|
|
}
|