mirror of
https://codeberg.org/privacy1st/nix-git
synced 2024-11-22 22:09:34 +01:00
27 lines
606 B
Nix
27 lines
606 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
users.users.yoda = {
|
|
packages = with pkgs; [
|
|
btop # Terminal resource monitor
|
|
htop
|
|
#screen # Terminal multiplexer
|
|
];
|
|
};
|
|
|
|
# Terminal multiplexer
|
|
programs.screen.enable = true;
|
|
programs.screen.screenrc = ''
|
|
defscrollback 10000
|
|
startup_message off
|
|
'';
|
|
|
|
# Small storage space savings.
|
|
#
|
|
# Don't install documentation to `/share/doc`.
|
|
documentation.doc.enable = false;
|
|
# Don't install man pages.
|
|
documentation.man.enable = false;
|
|
# Don't install install info pages and the info command.
|
|
documentation.info.enable = false;
|
|
}
|