Dump nixos config after scrubing

This commit is contained in:
jmug
2025-05-03 23:42:03 -07:00
commit 5fa4c76c24
854 changed files with 30072 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
{ ... }: {
programs.starship = {
enable = true;
enableZshIntegration = true;
settings = {
username.format = "[$user](213) ";
hostname = {
disabled = false;
ssh_symbol = "🌐";
style = "bold green";
};
nix_shell = {
format = "[$symbol$state nix-shell]($style) ";
symbol = " ";
pure_msg = "p";
impure_msg = "i";
};
golang = {
format = "go [$symbol $version ]($style)";
symbol = "🦫";
};
character = {
error_symbol = "[](bold red)";
};
directory = {
truncation_symbol = ".../";
};
};
};
}