Files
Foundry/home/misterio/features/cli/screen.nix
T
Gabriel Fontes 7885b414a4 format with alejandra
okay i'm not a big fan of nixfmt in the end
2024-04-07 14:21:47 -03:00

9 lines
159 B
Nix

{pkgs, ...}: {
home.packages = [pkgs.screen];
home.file.".screenrc".text = ''
startup_message off
defbce on
setenv TERM xterm-256color
'';
}