8 lines
198 B
Nix
8 lines
198 B
Nix
{ lib, ... }: {
|
|
programs.starship = {
|
|
enable = lib.mkDefault true;
|
|
enableFishIntegration = true;
|
|
enableNushellIntegration = true;
|
|
settings = lib.importTOML ./starship.toml;
|
|
};
|
|
}
|