nixpkgs/nixos/modules/programs/xonsh.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

109 lines
2.9 KiB
Nix
Raw Normal View History

2016-07-21 00:55:36 +02:00
# This module defines global configuration for the xonsh.
{
config,
lib,
pkgs,
...
}:
let
cfg = config.programs.xonsh;
2024-11-12 09:22:26 -05:00
package = cfg.package.override { inherit (cfg) extraPackages; };
bashCompletionPath = "${cfg.bashCompletion.package}/share/bash-completion/bash_completion";
2016-07-21 00:55:36 +02:00
in
{
options = {
programs.xonsh = {
enable = lib.mkOption {
2016-07-21 00:55:36 +02:00
default = false;
description = ''
Whether to configure xonsh as an interactive shell.
2016-07-21 00:55:36 +02:00
'';
type = lib.types.bool;
2016-07-21 00:55:36 +02:00
};
package = lib.mkPackageOption pkgs "xonsh" {
extraDescription = ''
The argument `extraPackages` of this package will be overridden by
the option `programs.xonsh.extraPackages`.
'';
2016-07-21 00:55:36 +02:00
};
config = lib.mkOption {
2016-07-21 00:55:36 +02:00
default = "";
description = ''
Extra text added to the end of `/etc/xonsh/xonshrc`,
the system-wide control file for xonsh.
'';
type = lib.types.lines;
2016-07-21 00:55:36 +02:00
};
2024-11-12 09:22:26 -05:00
extraPackages = lib.mkOption {
default = (ps: [ ]);
defaultText = lib.literalExpression "ps: [ ]";
example = lib.literalExpression ''
ps: with ps; [ numpy xonsh.xontribs.xontrib-vox ]
'';
2024-11-12 09:22:26 -05:00
type =
with lib.types;
coercedTo (listOf lib.types.package) (v: (_: v)) (functionTo (listOf lib.types.package));
description = ''
Xontribs and extra Python packages to be available in xonsh.
2024-11-12 09:22:26 -05:00
'';
};
bashCompletion = {
enable = lib.mkEnableOption "bash completions for xonsh" // {
default = true;
};
package = lib.mkPackageOption pkgs "bash-completion" { };
};
2016-07-21 00:55:36 +02:00
};
};
config = lib.mkIf cfg.enable {
2016-07-21 00:55:36 +02:00
2022-12-03 17:42:47 +08:00
environment.etc."xonsh/xonshrc".text = ''
# /etc/xonsh/xonshrc: DO NOT EDIT -- this file has been generated automatically.
if not ''${...}.get('__NIXOS_SET_ENVIRONMENT_DONE'):
# The NixOS environment and thereby also $PATH
# haven't been fully set up at this point. But
# `source-bash` below requires `bash` to be on $PATH,
# so add an entry with bash's location:
$PATH.add('${pkgs.bash}/bin')
# Stash xonsh's ls alias, so that we don't get a collision
# with Bash's ls alias from environment.shellAliases:
_ls_alias = aliases.pop('ls', None)
# Source the NixOS environment config.
source-bash "${config.system.build.setEnvironment}"
# Restore xonsh's ls alias, overriding that from Bash (if any).
if _ls_alias is not None:
aliases['ls'] = _ls_alias
del _ls_alias
${lib.optionalString cfg.bashCompletion.enable "$BASH_COMPLETIONS = '${bashCompletionPath}'"}
${cfg.config}
'';
2016-07-21 00:55:36 +02:00
2024-11-12 09:22:26 -05:00
environment.systemPackages = [ package ];
2016-07-21 00:55:36 +02:00
environment.shells = [
"/run/current-system/sw/bin/xonsh"
2024-11-12 09:22:26 -05:00
"${lib.getExe package}"
];
2016-07-21 00:55:36 +02:00
};
}