mirror of
https://github.com/Misterio77/Foundry.git
synced 2026-08-24 10:04:09 -05:00
9 lines
159 B
Nix
9 lines
159 B
Nix
{pkgs, ...}: {
|
|
home.packages = [pkgs.screen];
|
|
home.file.".screenrc".text = ''
|
|
startup_message off
|
|
defbce on
|
|
setenv TERM xterm-256color
|
|
'';
|
|
}
|