Files
NixOS-Configs/modules/apps/terminal.nix

10 lines
179 B
Nix

{ pkgs, ... }:
{
# Foot terminal is configured and managed via Home Manager (home/foot.nix)
environment.systemPackages = with pkgs; [
zoxide
fzf
];
}