From 760da3e3f39b43c113797456dcdbe8ad6cfb466c Mon Sep 17 00:00:00 2001 From: Rok Garbas Date: Thu, 21 Jul 2016 00:55:36 +0200 Subject: [PATCH] nixos: init programs.xonsh --- nixos/modules/module-list.nix | 1 + nixos/modules/programs/xonsh.nix | 62 ++++++++++++++++++++++++++++++++ 2 files changed, 63 insertions(+) create mode 100644 nixos/modules/programs/xonsh.nix diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix index 709639919864..22daf532db99 100644 --- a/nixos/modules/module-list.nix +++ b/nixos/modules/module-list.nix @@ -84,6 +84,7 @@ ./programs/venus.nix ./programs/wvdial.nix ./programs/xfs_quota.nix + ./programs/xonsh.nix ./programs/zsh/zsh.nix ./rename.nix ./security/acme.nix diff --git a/nixos/modules/programs/xonsh.nix b/nixos/modules/programs/xonsh.nix new file mode 100644 index 000000000000..c0be2d8884b3 --- /dev/null +++ b/nixos/modules/programs/xonsh.nix @@ -0,0 +1,62 @@ +# This module defines global configuration for the xonsh. + +{ config, lib, pkgs, ... }: + +with lib; + +let + + cfge = config.environment; + + cfg = config.programs.xonsh; + +in + +{ + + options = { + + programs.xonsh = { + + enable = mkOption { + default = false; + description = '' + Whether to configure xnosh as an interactive shell. + ''; + type = types.bool; + }; + + package = mkOption { + type = types.package; + 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 = [ pkgs.xonsh ]; + + environment.shells = + [ "/run/current-system/sw/bin/xonsh" + "/var/run/current-system/sw/bin/xonsh" + "${pkgs.xonsh}/bin/xonsh" + ]; + + }; + +} +