diff options
Diffstat (limited to 'configuration.nix')
-rw-r--r-- | configuration.nix | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/configuration.nix b/configuration.nix index c2167db..5db2c20 100644 --- a/configuration.nix +++ b/configuration.nix @@ -16,11 +16,11 @@ # You should have received a copy of the GNU Affero General Public License # along with loang configuration. If not, see <https://www.gnu.org/licenses/>. -{ config, pkgs, ... }: +{ pkgs, ... }: { environment = { enableAllTerminfo = true; - systemPackages = with pkgs; [ git htop rsync vim ]; + systemPackages = with pkgs; [ git htop man-pages rsync vim ]; }; fileSystems."/mnt/nas" = { @@ -59,7 +59,7 @@ system.stateVersion = "22.05"; systemd.extraConfig = '' - DefaultTimeoutStartSec=900s + DefaultTimeoutStartSec=900s ''; time.timeZone = "UTC"; |