2024-11-16 11:27:44 -08:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
config,
|
|
|
|
pkgs,
|
|
|
|
...
|
2025-01-13 21:05:10 -08:00
|
|
|
}: let
|
2024-11-16 22:34:40 -08:00
|
|
|
cfg = config.marleyos.programs.neo;
|
2025-01-13 21:05:10 -08:00
|
|
|
in {
|
|
|
|
options.marleyos.programs.neo.enable = lib.mkEnableOption "neo";
|
2024-11-16 11:27:44 -08:00
|
|
|
|
2025-01-13 21:05:10 -08:00
|
|
|
config = lib.mkIf cfg.enable {
|
2024-11-16 11:27:44 -08:00
|
|
|
home.packages = with pkgs; [
|
|
|
|
neo
|
|
|
|
];
|
|
|
|
|
2024-11-23 15:15:30 -08:00
|
|
|
programs.fish.functions = {
|
2024-11-16 11:27:44 -08:00
|
|
|
neo = {
|
|
|
|
wraps = "neo";
|
2025-01-13 21:05:10 -08:00
|
|
|
body =
|
|
|
|
# fish
|
2024-11-16 11:27:44 -08:00
|
|
|
''
|
|
|
|
command neo --charset=ascii $argv
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|