marleyos/modules/home/programs/neo/default.nix

31 lines
485 B
Nix
Raw Normal View History

2024-11-16 11:27:44 -08:00
{
lib,
config,
pkgs,
...
}:
let
inherit (lib) mkEnableOption mkIf;
2024-11-16 11:27:44 -08:00
cfg = config.marleyos.programs.neo;
2024-11-16 11:27:44 -08:00
in
{
options.marleyos.programs.neo.enable = mkEnableOption "neo";
2024-11-16 11:27:44 -08:00
config = mkIf cfg.enable {
home.packages = with pkgs; [
neo
];
programs.fish.functions = mkIf config.programs.fish.enable {
neo = {
wraps = "neo";
body = # fish
''
command neo --charset=ascii $argv
'';
};
};
};
}