marleyos/modules/home/programs/neo/default.nix
punkfairie 6a2b253f83
fix(home): Fix module enable option def
Modules were being placed at <group>.<namespace>.<module> instead of
<namespace>.<group>.<module>
2024-11-16 11:39:47 -08:00

32 lines
512 B
Nix

{
lib,
config,
namespace,
pkgs,
...
}:
let
inherit (lib) mkIf;
inherit (lib.${namespace}) mkEnableModule;
cfg = config.${namespace}.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
'';
};
};
};
}