Files
nixos/user/modules/terminal.nix
T
2025-07-14 15:12:21 +02:00

24 lines
364 B
Nix

{ config, lib, pkgs, ... }:
{
home.packages = with pkgs; [
];
programs.starship.enable = true;
programs.fish = {
enable = true;
interactiveShellInit = ''
if type -q starship
starship init fish | source
end
export VISUAL=nvim;
export EDITOR=nvim;
'';
};
programs.zellij = {
enable = true;
};
}