aboutsummaryrefslogtreecommitdiff
path: root/modules/terminal/system
diff options
context:
space:
mode:
authorCollin Williams <96917990+bluedragon1221@users.noreply.github.com>2025-07-08 01:23:12 +0000
committerCollin Williams <96917990+bluedragon1221@users.noreply.github.com>2025-07-08 01:23:12 +0000
commitc31425298f3de9fff78d38a36ccc2d8e14c580ee (patch)
tree8f7059ddde48b642cb851bd30868dd4855ad0e08 /modules/terminal/system
parent2006018e7a280f70c9a7d9efc70632fbb86059ac (diff)
typo
Diffstat (limited to 'modules/terminal/system')
-rw-r--r--modules/terminal/system/programs/starship.nix10
1 files changed, 4 insertions, 6 deletions
diff --git a/modules/terminal/system/programs/starship.nix b/modules/terminal/system/programs/starship.nix
index 7662194..fdd7965 100644
--- a/modules/terminal/system/programs/starship.nix
+++ b/modules/terminal/system/programs/starship.nix
@@ -24,8 +24,8 @@
format = "$modified$staged$ahead$behind";
modified = "[!](red bold)";
staged = "[+](green bold)";
- ahead = "[](green)";
- behind = "[](red)";
+ ahead = "[/](green)";
+ behind = "[\](red)";
};
directory = {
@@ -39,7 +39,7 @@ in
hjem.users."${config.collinux.user.name}" = {
files = {
".config/starship.toml".source = settings;
- ".config/fish/conf.d/starship.fish".text = lib.mkIf config.collinux.shells.fish.enable ''
+ ".config/fish/conf.d/starship.fish".text = lib.mkIf config.collinux.terminal.shells.fish.enable ''
function starship_transient_prompt_func
${pkgs.starship}/bin/starship module character
end
@@ -51,8 +51,6 @@ in
'';
};
- packages = [
- pkgs.starship
- ];
+ packages = [pkgs.starship];
};
}