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; };
|
2025-03-02 12:31:56 +08:00
|
|
|
bashCompletionPath = "${cfg.bashCompletion.package}/share/bash-completion/bash_completion";
|
2016-07-21 00:55:36 +02:00
|
|
|
in
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
options = {
|
|
|
|
|
|
|
|
programs.xonsh = {
|
|
|
|
|
2024-04-17 14:37:58 +03:00
|
|
|
enable = lib.mkOption {
|
2016-07-21 00:55:36 +02:00
|
|
|
default = false;
|
|
|
|
description = ''
|
2017-09-21 00:47:57 +02:00
|
|
|
Whether to configure xonsh as an interactive shell.
|
2016-07-21 00:55:36 +02:00
|
|
|
'';
|
2024-04-17 14:37:58 +03:00
|
|
|
type = lib.types.bool;
|
2016-07-21 00:55:36 +02:00
|
|
|
};
|
|
|
|
|
2024-04-17 14:37:58 +03:00
|
|
|
package = lib.mkPackageOption pkgs "xonsh" {
|
2025-02-24 22:04:21 +08:00
|
|
|
extraDescription = ''
|
|
|
|
The argument `extraPackages` of this package will be overridden by
|
|
|
|
the option `programs.xonsh.extraPackages`.
|
|
|
|
'';
|
2016-07-21 00:55:36 +02:00
|
|
|
};
|
|
|
|
|
2024-04-17 14:37:58 +03:00
|
|
|
config = lib.mkOption {
|
2016-07-21 00:55:36 +02:00
|
|
|
default = "";
|
2025-02-24 22:04:21 +08:00
|
|
|
description = ''
|
|
|
|
Extra text added to the end of `/etc/xonsh/xonshrc`,
|
|
|
|
the system-wide control file for xonsh.
|
|
|
|
'';
|
2024-04-17 14:37:58 +03:00
|
|
|
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: [ ]);
|
2025-02-24 22:04:21 +08:00
|
|
|
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 = ''
|
2025-02-24 22:04:21 +08:00
|
|
|
Xontribs and extra Python packages to be available in xonsh.
|
2024-11-12 09:22:26 -05:00
|
|
|
'';
|
|
|
|
};
|
2025-03-02 12:31:56 +08: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
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2024-04-17 14:37:58 +03: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.
|
2020-04-21 23:43:37 +02:00
|
|
|
|
|
|
|
|
|
|
|
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
|
|
|
|
|
2025-03-02 12:31:56 +08:00
|
|
|
${lib.optionalString cfg.bashCompletion.enable "$BASH_COMPLETIONS = '${bashCompletionPath}'"}
|
|
|
|
|
2020-04-21 23:43:37 +02:00
|
|
|
${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
|
|
|
|
2024-06-18 22:49:13 +08:00
|
|
|
environment.shells = [
|
|
|
|
"/run/current-system/sw/bin/xonsh"
|
2024-11-12 09:22:26 -05:00
|
|
|
"${lib.getExe package}"
|
2024-06-18 22:49:13 +08:00
|
|
|
];
|
2016-07-21 00:55:36 +02:00
|
|
|
};
|
|
|
|
}
|