marleyos/modules/home/programs/cli/starship/default.nix

21 lines
316 B
Nix
Raw Normal View History

2024-11-17 04:45:03 +00:00
{
lib,
config,
...
}: let
cfg = config.marleyos.programs.starship;
in {
options.marleyos.programs.starship.enable = lib.mkEnableOption "starship";
2024-11-17 04:45:03 +00:00
imports = [
./nerd-font-symbols.nix
2025-03-02 18:41:56 +00:00
./theme.nix
2024-11-17 04:45:03 +00:00
];
config = lib.mkIf cfg.enable {
2024-11-17 04:45:03 +00:00
programs.starship = {
enable = true;
};
};
}