nixos-config/nixosModules/home_manager/starship.nix
2024-04-11 01:21:49 -04:00

10 lines
No EOL
284 B
Nix

{ pkgs, config, lib, ...}:
{
options.speccon18.home_manager.enable = lib.mkEnableOption "enables specs custom starship config";
config = lib.mkIf config.speccon18.home_manager.enable {
programs.starship = {
enable = true;
enableZshIntegration = true;
};
};
}