refactor: extract shell setup

This commit is contained in:
Michael Mandl 2024-07-10 13:21:28 +02:00
parent f6f01771ab
commit c2afb2c5d1
Signed by: mandlm
GPG key ID: 088ED38F036C7AF2
18 changed files with 33 additions and 58 deletions

11
shell/starship.nix Normal file
View file

@ -0,0 +1,11 @@
{ lib, ... }:
{
programs.starship = {
enable = true;
settings = {
format = lib.concatStrings [ "$all" "$directory" "$character" ];
hostname.format = "[$ssh_symbol$hostname]($style) ";
};
};
}