nix-git/modules/headless.nix

25 lines
548 B
Nix
Raw Normal View History

2023-09-27 12:06:14 +02:00
{ config, pkgs, ... }:
{
users.users.yoda = {
packages = with pkgs; [
2023-11-19 14:40:38 +01:00
btop # Terminal resource monitor
2023-09-27 12:06:14 +02:00
htop
2023-11-19 14:40:38 +01:00
screen # Terminal multiplexer
2023-09-27 12:06:14 +02:00
];
};
2023-10-05 12:40:35 +02:00
programs.screen.screenrc = ''
defscrollback 10000
#startup_message off
'';
2024-01-17 20:54:38 +01:00
# 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;
2023-09-27 12:06:14 +02:00
}