This commit is contained in:
Sridhar Ratnakumar 2025-08-24 13:25:13 -04:00
parent 0b38fa22ef
commit d5eaa97e36
4 changed files with 15 additions and 8 deletions

View file

@ -1,13 +1,5 @@
{ pkgs, ... }:
{
programs.bash = {
# https://just.systems/man/en/chapter_65.html
# FIXME: doesn't work (macos)
initExtra = ''
# complete -F _just -o bashdefault -o default j
'';
};
home.shellAliases.j = "just";
home.packages = with pkgs; [ just ];
}

View file

@ -29,6 +29,10 @@ in
nixpkgs-fmt
just
eternal-terminal
uv # For running Python stuff quickly.
# AI
gemini-cli
google-cloud-sdk

View file

@ -0,0 +1,10 @@
{ config, lib, ... }:
{
services.eternal-terminal.enable = true;
# Automatically open firewall port for eternal-terminal
networking.firewall.allowedTCPPorts = lib.optional
config.services.eternal-terminal.enable
config.services.eternal-terminal.port;
}