nix-dotfiles/nixosModules/apps/shells/xonsh/shell.nix

8 lines
127 B
Nix
Raw Normal View History

{ config, lib, ... }:
{
config = lib.mkIf (config.shell.defaultShell == "xonsh") {
programs.xonsh.enable = true;
};
}