1
0
Fork 0
mirror of https://github.com/LnL7/nix-darwin.git synced 2024-12-14 11:57:34 +00:00

Add programs.fish module

In nix-darwin, `config.system.build.setEnvironment is a string containing a
script, not a filename, so our usage is a bit different from NixOS's.
This commit is contained in:
Eric Bailey 2017-01-02 21:42:13 -06:00
parent 8cdebe9fa9
commit 75575107a6
No known key found for this signature in database
GPG key ID: 29E1B8D32C1635C4
2 changed files with 145 additions and 0 deletions

View file

@ -40,6 +40,7 @@ let
./modules/services/kwm.nix
./modules/services/nix-daemon.nix
./modules/programs/bash.nix
./modules/programs/fish.nix
./modules/programs/nix-script.nix
./modules/programs/tmux.nix
./modules/programs/vim.nix

144
modules/programs/fish.nix Normal file
View file

@ -0,0 +1,144 @@
{ config, lib, pkgs, ...}:
with lib;
let
cfge = config.environment;
cfg = config.programs.fish;
fishVariables =
mapAttrsToList (n: v: ''set -x ${n} "${v}"'') cfg.variables;
shell = pkgs.runCommand pkgs.fish.name
{ buildInputs = [ pkgs.makeWrapper ]; }
''
source $stdenv/setup
mkdir -p $out/bin
makeWrapper ${pkgs.fish}/bin/fish $out/bin/fish
'';
fishAliases = concatStringsSep "\n" (
mapAttrsFlatten (k: v: "alias ${k} '${v}'") cfg.shellAliases
);
in
{
options = {
programs.fish = {
enable = mkOption {
type = types.bool;
default = false;
description = ''
Whether to configure fish as an interactive shell.
'';
};
variables = mkOption {
type = types.attrsOf (types.either types.str (types.listOf types.str));
default = {};
description = ''
A set of environment variables used in the global environment.
These variables will be set on shell initialisation.
The value of each variable can be either a string or a list of
strings. The latter is concatenated, interspersed with colon
characters.
'';
apply = mapAttrs (n: v: if isList v then concatStringsSep ":" v else v);
};
shellAliases = mkOption {
type = types.attrs;
default = cfge.shellAliases;
description = ''
Set of aliases for fish shell. See <option>environment.shellAliases</option>
for an option format description.
'';
};
shellInit = mkOption {
type = types.lines;
default = "";
description = ''
Shell Script code called during fish shell initialisation.
'';
};
loginShellInit = mkOption {
type = types.lines;
default = "";
description = ''
Shell script code called during fish login shell initialisation.
'';
};
interactiveShellInit = mkOption {
type = types.lines;
default = "";
description = ''
Shell script code called during interactive fish shell initialisation.
'';
};
promptInit = mkOption {
type = types.lines;
default = "";
description = ''
Shell script code used to initialise fish prompt.
'';
};
};
};
config = mkIf cfg.enable {
environment.etc."fish/foreign-env/shellInit".text = cfge.shellInit;
environment.etc."fish/foreign-env/loginShellInit".text = cfge.loginShellInit;
environment.etc."fish/foreign-env/interactiveShellInit".text = cfge.interactiveShellInit;
environment.etc."fish/config.fish".text = ''
# /etc/fish/config.fish: DO NOT EDIT -- this file has been generated automatically.
set fish_function_path $fish_function_path ${pkgs.fish-foreign-env}/share/fish-foreign-env/functions
set PATH ${replaceStrings [":"] [" "] config.environment.systemPath} $PATH
${config.system.build.setEnvironment}
fenv source /etc/fish/foreign-env/shellInit > /dev/null
${cfg.shellInit}
${concatStringsSep "\n" fishVariables}
if status --is-login
fenv source /etc/fish/foreign-env/loginShellInit > /dev/null
${cfg.loginShellInit}
end
if status --is-interactive
${fishAliases}
fenv source /etc/fish/foreign-env/interactiveShellInit > /dev/null
${cfg.interactiveShellInit}
${cfg.promptInit}
end
'';
# include programs that bring their own completions
# FIXME: environment.pathsToLink = [ "/share/fish/vendor_completions.d" ];
environment.systemPackages = [ pkgs.fish ];
environment.loginShell = mkDefault "${shell}/bin/fish -l";
environment.variables.SHELL = mkDefault "${shell}/bin/fish";
};
}