Use ghostty, starship and remove powerlevel 10k

This commit is contained in:
marc
2025-05-25 14:20:12 +02:00
parent df6c1c9402
commit 41d47f6152
5 changed files with 76 additions and 1738 deletions

View File

@@ -0,0 +1,25 @@
{ config, lib, pkgs, ... }:
let
cfg = config.samfelag.modules.shell.starship;
in
{
options.samfelag.modules.shell.starship = {
enable = lib.mkEnableOption "A prompt for any shell";
};
config = lib.mkIf cfg.enable {
hm.programs.starship = {
enable = true;
settings = {
add_newline = false;
# character = {
# success_symbol = "[➜](bold green)";
# error_symbol = "[➜](bold red)";
# };
# package.disabled = true;
};
};
};
}