Marked for deletion

This commit is contained in:
Zonsopkomst 2023-10-09 14:35:10 -05:00
parent cd777e0696
commit c2223e329d

28
common/starship.nix.del Normal file
View file

@ -0,0 +1,28 @@
# TODO Marked for deletion
# Declarative, single user, via home-manager(opens new window)
# Enable the `programs.starship` module in your `home.nix` file, and add your settings
# Add the following to the end of ~/.bashrc:
# eval "$(starship init bash)"
{ config, pkgs, ... }:
{
programs.starship = {
enable = true;
# Configuration written to ~/.config/starship.toml
settings = pkgs.lib.importTOML ~/.config/starship;
#settings = {
# add_newline = false;
# character = {
# success_symbol = "[➜](bold green)";
# error_symbol = "[➜](bold red)";
# };
# package.disabled = true;
#};
};
}