mirror of
https://github.com/gburd/nix-config.git
synced 2024-11-10 15:36:25 +00:00
9 lines
163 B
Nix
9 lines
163 B
Nix
|
{ pkgs, ... }: {
|
||
|
home.packages = [ pkgs.screen ];
|
||
|
home.file.".screenrc".text = ''
|
||
|
startup_message off
|
||
|
defbce on
|
||
|
setenv TERM xterm-256color
|
||
|
'';
|
||
|
}
|