navi: add module

This commit is contained in:
Mario Rodas 2021-12-08 04:20:00 +00:00 committed by Robert Helgesson
parent fa73c3167e
commit 6fe3b539e0
No known key found for this signature in database
GPG Key ID: 36BDAA14C2797E89
4 changed files with 92 additions and 0 deletions

2
.github/CODEOWNERS vendored
View File

@ -140,6 +140,8 @@
/modules/programs/mu.nix @KarlJoad
/modules/programs/navi.nix @marsam
/modules/programs/ncmpcpp.nix @olmokramer
/tests/modules/programs/ncmpcpp @olmokramer
/tests/modules/programs/ncmpcpp-linux @olmokramer

View File

@ -2297,6 +2297,13 @@ in
A new module is available: 'programs.sqls'.
'';
}
{
time = "2021-12-11T11:55:12+00:00";
message = ''
A new module is available: 'programs.navi'.
'';
}
];
};
}

View File

@ -100,6 +100,7 @@ let
./programs/mpv.nix
./programs/msmtp.nix
./programs/mu.nix
./programs/navi.nix
./programs/ncmpcpp.nix
./programs/ncspot.nix
./programs/ne.nix

82
modules/programs/navi.nix Normal file
View File

@ -0,0 +1,82 @@
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.programs.navi;
yamlFormat = pkgs.formats.yaml { };
configDir = if pkgs.stdenv.isDarwin then
"Library/Application Support"
else
config.xdg.configHome;
in {
meta.maintainers = [ maintainers.marsam ];
options.programs.navi = {
enable = mkEnableOption "Navi";
package = mkOption {
type = types.package;
default = pkgs.navi;
defaultText = literalExpression "pkgs.navi";
description = "The package to use for the navi binary.";
};
settings = mkOption {
type = yamlFormat.type;
default = { };
example = literalExpression ''
{
cheats = {
paths = [
"~/cheats/"
];
};
}
'';
description = ''
Configuration written to
<filename>$XDG_CONFIG_HOME/navi/config.yaml</filename> on Linux or
<filename>$HOME/Library/Application Support/navi/config.yaml</filename>
on Darwin. See
<link xlink:href="https://github.com/denisidoro/navi/blob/master/docs/config_file.md"/>
for more information.
'';
};
enableBashIntegration = mkEnableOption "Bash integration" // {
default = true;
};
enableZshIntegration = mkEnableOption "Zsh integration" // {
default = true;
};
enableFishIntegration = mkEnableOption "Fish integration" // {
default = true;
};
};
config = mkIf cfg.enable {
home.packages = [ cfg.package ];
programs.bash.initExtra = mkIf cfg.enableBashIntegration ''
eval "$(${cfg.package}/bin/navi widget bash)"
'';
programs.zsh.initExtra = mkIf cfg.enableZshIntegration ''
eval "$(${cfg.package}/bin/navi widget zsh)"
'';
programs.fish.shellInit = mkIf cfg.enableFishIntegration ''
${cfg.package}/bin/navi widget fish | source
'';
home.file."${configDir}/navi/config.yaml" = mkIf (cfg.settings != { }) {
source = yamlFormat.generate "navi-config" cfg.settings;
};
};
}