diff options
author | Alan Pearce | 2017-09-23 10:25:03 +0200 |
---|---|---|
committer | Alan Pearce | 2017-09-23 10:25:03 +0200 |
commit | 2b02b1ab144c1c59cbd8b8f1dbfd1c00044e8237 (patch) | |
tree | c36b3eb6e394ca623d572726e47e3e96169f7e50 /modules | |
parent | 2c98b8c453cac66b09b6e2f505c336ce3f01663d (diff) | |
download | nixos-configuration-2b02b1ab144c1c59cbd8b8f1dbfd1c00044e8237.tar.lz nixos-configuration-2b02b1ab144c1c59cbd8b8f1dbfd1c00044e8237.tar.zst nixos-configuration-2b02b1ab144c1c59cbd8b8f1dbfd1c00044e8237.zip |
shell: Let's try xonsh for a while
Diffstat (limited to 'modules')
-rw-r--r-- | modules/shell.nix | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/modules/shell.nix b/modules/shell.nix index dd511cd..3ea43ad 100644 --- a/modules/shell.nix +++ b/modules/shell.nix @@ -5,6 +5,9 @@ promptInit = ""; }; programs.bash.enableCompletion = true; + programs.xonsh = { + enable = true; + }; environment.systemPackages = with pkgs; [ vim |