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