punkfairie
15372b7726
There was little point to doing this anyway as project-wide find & replace is trivial.
32 lines
504 B
Nix
32 lines
504 B
Nix
{
|
|
lib,
|
|
config,
|
|
namespace,
|
|
pkgs,
|
|
...
|
|
}:
|
|
let
|
|
inherit (lib) mkIf;
|
|
inherit (lib.marleyos) mkEnableModule;
|
|
|
|
cfg = config.marleyos.programs.neo;
|
|
in
|
|
{
|
|
options = mkEnableModule "programs.neo";
|
|
|
|
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
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
}
|