22 lines
461 B
Nix
22 lines
461 B
Nix
{ inputs, ... }:
|
||
{
|
||
imports = [
|
||
"${inputs.self}/modules/home/fish.nix"
|
||
"${inputs.self}/modules/home/starship.nix"
|
||
];
|
||
|
||
programs.fish.shellAliases = {
|
||
cat = "bat --plain";
|
||
rebuild = "nr";
|
||
update = "nix flake update";
|
||
clean = "sudo nix-collect-garbage -d";
|
||
};
|
||
|
||
programs.starship.settings = {
|
||
format = "🎨 $directory:$character";
|
||
character = {
|
||
success_symbol = " 💜";
|
||
error_symbol = " ⚠️";
|
||
};
|
||
};
|
||
}
|