Enable man pages and cache on all systems

This commit is contained in:
Andreas Zweili 2024-01-29 13:27:32 +01:00
parent 22a874230c
commit 5f0da382fd
1 changed files with 7 additions and 1 deletions

View File

@ -23,6 +23,12 @@
hardware = { enableRedistributableFirmware = true; };
# required in order to have apropos and whatis working
documentation = {
man.generateCaches = true;
nixos.includeAllModules = true;
};
programs.mosh.enable = true;
programs.ssh.startAgent = true;
services.openssh = {
@ -63,7 +69,7 @@
EDITOR = "vim";
VISUAL = "vim";
};
systemPackages = [ pkgs.vim ];
systemPackages = [ pkgs.bottom pkgs.man-pages pkgs.vim ];
};
# Disable the root user
users.users.root.hashedPassword = "!";