mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-13 05:05:29 +03:00
Merge pull request #5626 from matthiasbeyer/add-fish_shell_module
Add basic nixos module for fish shell
This commit is contained in:
commit
157d199b33
1 changed files with 115 additions and 0 deletions
115
nixos/modules/programs/fish/fish.nix
Normal file
115
nixos/modules/programs/fish/fish.nix
Normal file
|
@ -0,0 +1,115 @@
|
||||||
|
# This module defines global configuration for the fish.
|
||||||
|
|
||||||
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
|
with lib;
|
||||||
|
|
||||||
|
let
|
||||||
|
|
||||||
|
cfge = config.environment;
|
||||||
|
|
||||||
|
cfg = config.programs.fish;
|
||||||
|
|
||||||
|
fishAliases = concatStringsSep "\n" (
|
||||||
|
mapAttrsFlatten (k: v: "alias ${k}='${v}'") cfg.shellAliases
|
||||||
|
);
|
||||||
|
|
||||||
|
in
|
||||||
|
|
||||||
|
{
|
||||||
|
|
||||||
|
options = {
|
||||||
|
|
||||||
|
programs.fish = {
|
||||||
|
|
||||||
|
enable = mkOption {
|
||||||
|
default = false;
|
||||||
|
description = ''
|
||||||
|
Whenever to configure fish as an interactive shell.
|
||||||
|
'';
|
||||||
|
type = types.bool;
|
||||||
|
};
|
||||||
|
|
||||||
|
shellAliases = mkOption {
|
||||||
|
default = config.environment.shellAliases;
|
||||||
|
description = ''
|
||||||
|
Set of aliases for zsh shell. See <option>environment.shellAliases</option>
|
||||||
|
for an option format description.
|
||||||
|
'';
|
||||||
|
type = types.attrs; # types.attrsOf types.stringOrPath;
|
||||||
|
};
|
||||||
|
|
||||||
|
shellInit = mkOption {
|
||||||
|
default = "";
|
||||||
|
description = ''
|
||||||
|
Shell script code called during fish shell initialisation.
|
||||||
|
'';
|
||||||
|
type = types.lines;
|
||||||
|
};
|
||||||
|
|
||||||
|
loginShellInit = mkOption {
|
||||||
|
default = "";
|
||||||
|
description = ''
|
||||||
|
Shell script code called during fish login shell initialisation.
|
||||||
|
'';
|
||||||
|
type = types.lines;
|
||||||
|
};
|
||||||
|
|
||||||
|
interactiveShellInit = mkOption {
|
||||||
|
default = "";
|
||||||
|
description = ''
|
||||||
|
Shell script code called during interactive fish initialisation.
|
||||||
|
'';
|
||||||
|
type = types.lines;
|
||||||
|
};
|
||||||
|
|
||||||
|
promptInit = mkOption {
|
||||||
|
default = "";
|
||||||
|
description = ''
|
||||||
|
Shell script code used to initialise the fish prompt.
|
||||||
|
'';
|
||||||
|
type = types.lines;
|
||||||
|
};
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
|
config = mkIf cfg.enable {
|
||||||
|
|
||||||
|
programs.fish = {
|
||||||
|
|
||||||
|
shellInit = ''
|
||||||
|
. ${config.system.build.setEnvironment}
|
||||||
|
|
||||||
|
${cfge.shellInit}
|
||||||
|
'';
|
||||||
|
|
||||||
|
loginShellInit = cfge.loginShellInit;
|
||||||
|
|
||||||
|
interactiveShellInit = ''
|
||||||
|
${cfge.interactiveShellInit}
|
||||||
|
|
||||||
|
${cfg.promptInit}
|
||||||
|
|
||||||
|
${fishAliases}
|
||||||
|
'';
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
|
environment.profileRelativeEnvVars = { };
|
||||||
|
|
||||||
|
environment.systemPackages = [ pkgs.fish ];
|
||||||
|
|
||||||
|
#users.defaultUserShell = mkDefault "/run/current-system/sw/bin/fish";
|
||||||
|
|
||||||
|
environment.shells =
|
||||||
|
[ "/run/current-system/sw/bin/fish"
|
||||||
|
"/var/run/current-system/sw/bin/fish"
|
||||||
|
"${pkgs.fish}/bin/fish"
|
||||||
|
];
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue