marleyos/modules/home/programs/neo/default.nix
punkfairie 15372b7726
feat: ${namespace} -> marleyos
There was little point to doing this anyway as project-wide find &
replace is trivial.
2024-11-16 22:36:34 -08:00

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
'';
};
};
};
}