marleyos/modules/home/programs/starship/default.nix
2025-05-31 12:34:57 -07:00

20 lines
316 B
Nix

{
config,
lib,
...
}: let
cfg = config.marleyos.programs.starship;
in {
options.marleyos.programs.starship.enable = lib.mkEnableOption "starship";
imports = [
./nerd-font-symbols.nix
./theme.nix
];
config = lib.mkIf cfg.enable {
programs.starship = {
enable = true;
};
};
}