nix-flakes/hosts/machine/mafuyu/home/config/shell.nix
2026-09-10 01:54:06 +09:00

21 lines
438 B
Nix
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{ inputs, ... }:
{
imports = [
"${inputs.self}/modules/home/fish.nix"
"${inputs.self}/modules/home/starship.nix"
];
programs.fish.shellAliases = {
rebuild = "nr";
update = "nix flake update";
clean = "sudo nix-collect-garbage -d";
};
programs.starship.settings = {
format = " $directory:$character";
character = {
success_symbol = " 💕";
error_symbol = " ";
};
};
}