• Relocates common configurations from a user-specific directory to a global hierarchy • Adds host-specific files and updates import paths for better modularity • Introduces an experimental GNOME mutter feature
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
|
|
'';
|
|
}
|