This repository has been archived on 2025-03-05. You can view files and clone it, but cannot push or open issues or pull requests.

17 lines
296 B
Nix
Raw Permalink Normal View History

2022-12-30 13:05:46 +01:00
{ config, lib, pkgs, ... }:
with lib;
let cfg = config.features.cli.starship;
2022-12-30 13:05:46 +01:00
in {
options.features.cli.starship.enable = mkEnableOption "enable starship prompt";
2022-12-30 13:05:46 +01:00
config = mkIf cfg.enable {
programs.starship = {
enable = true;
enableFishIntegration = true;
};
}; }