nix-dotfiles/modules/shell/xonsh/default.nix

10 lines
151 B
Nix
Raw Normal View History

2023-12-04 17:43:21 -08:00
{ config, pkgs, lib, ... }:
{
programs.xonsh.enable = true;
users.defaultUserShell = pkgs.xonsh;
environment.shells = with pkgs; [ xonsh ];
}