aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/nixos/modules/programs/xonsh.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/nixos/modules/programs/xonsh.nix')
-rw-r--r--nixpkgs/nixos/modules/programs/xonsh.nix60
1 files changed, 60 insertions, 0 deletions
diff --git a/nixpkgs/nixos/modules/programs/xonsh.nix b/nixpkgs/nixos/modules/programs/xonsh.nix
new file mode 100644
index 00000000000..1590020f7b6
--- /dev/null
+++ b/nixpkgs/nixos/modules/programs/xonsh.nix
@@ -0,0 +1,60 @@
+# 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.
+ '';
+ type = types.bool;
+ };
+
+ package = mkOption {
+ type = types.package;
+ default = pkgs.xonsh;
+ 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 {
+
+ environment.etc.xonshrc.text = cfg.config;
+
+ environment.systemPackages = [ cfg.package ];
+
+ environment.shells =
+ [ "/run/current-system/sw/bin/xonsh"
+ "${cfg.package}/bin/xonsh"
+ ];
+
+ };
+
+}
+