infra/module/aspect/software/software-tty/nushell.nix

16 lines
280 B
Nix
Raw Permalink Normal View History

2025-12-01 13:23:24 +07:00
{
den.aspects = {
software-tty = {
homeManager =
{ pkgs, ... }:
{
home.shell.enableNushellIntegration = true;
programs = {
nushell = {
enable = true;
};
};
};
};
};
}