trying xonsh

This commit is contained in:
langedev 2023-12-04 17:43:21 -08:00
parent 8428e4fe84
commit 0e90d6522c
2 changed files with 13 additions and 3 deletions

View file

@ -0,0 +1,9 @@
{ config, pkgs, lib, ... }:
{
programs.xonsh.enable = true;
users.defaultUserShell = pkgs.xonsh;
environment.shells = with pkgs; [ xonsh ];
}