10 lines
No EOL
284 B
Nix
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;
|
|
};
|
|
};
|
|
} |