added starship
This commit is contained in:
parent
12cbfd1f98
commit
66230f34c4
4 changed files with 21 additions and 21 deletions
16
modules/home-manager/starship.nix
Normal file
16
modules/home-manager/starship.nix
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
{
|
||||
options.speccon18.hm.starship.enable = lib.mkEnableOption "Enable Starship";
|
||||
programs.starship = {
|
||||
enable = true;
|
||||
# Configuration written to ~/.config/starship.toml
|
||||
settings = {
|
||||
add_newline = false;
|
||||
|
||||
character = {
|
||||
success_symbol = "[➜](bold green)";
|
||||
error_symbol = "[➜](bold red)";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue