8 lines
127 B
Nix
8 lines
127 B
Nix
|
|
{ config, lib, ... }:
|
||
|
|
|
||
|
|
{
|
||
|
|
config = lib.mkIf (config.shell.defaultShell == "xonsh") {
|
||
|
|
programs.xonsh.enable = true;
|
||
|
|
};
|
||
|
|
}
|