16 lines
453 B
Nix
16 lines
453 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
options.speccon18.hm.starship.enable = lib.mkEnableOption "Enable Starship";
|
|
|
|
config = lib.mkIf config.speccon18.hm.starship.enable {
|
|
programs.starship = {
|
|
enable = true;
|
|
enableBashIntegration = true;
|
|
enableZshIntegration = true;
|
|
enableFishIntegration = false;
|
|
settings = builtins.fromTOML (builtins.readFile ./starship.toml);
|
|
};
|
|
};
|
|
|
|
}
|