nixpkgs/nixos/modules/programs/xonsh.nix

61 lines
1 KiB
Nix
Raw Normal View History

2016-07-20 22:55:36 +00:00
# This module defines global configuration for the xonsh.
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.programs.xonsh;
in
{
options = {
programs.xonsh = {
enable = mkOption {
default = false;
description = ''
Whether to configure xonsh as an interactive shell.
2016-07-20 22:55:36 +00:00
'';
type = types.bool;
};
package = mkOption {
type = types.package;
default = pkgs.xonsh;
2016-07-20 22:55:36 +00:00
example = literalExample "pkgs.xonsh.override { configFile = \"/path/to/xonshrc\"; }";
description = ''
xonsh package to use.
'';
};
config = mkOption {
default = "";
description = "Control file to customize your shell behavior.";
type = types.lines;
};
};
};
config = mkIf cfg.enable {
2019-08-13 21:52:01 +00:00
environment.etc.xonshrc.text = cfg.config;
2016-07-20 22:55:36 +00:00
environment.systemPackages = [ cfg.package ];
2016-07-20 22:55:36 +00:00
environment.shells =
[ "/run/current-system/sw/bin/xonsh"
"${cfg.package}/bin/xonsh"
2016-07-20 22:55:36 +00:00
];
};
}