From aba0a306bc14546ad4ce15be74ddbc068bca2f73 Mon Sep 17 00:00:00 2001 From: root Date: Sat, 8 Jan 2022 14:57:28 -0800 Subject: [PATCH] Disable some stuff temporarily --- configuration.nix | 6 ++---- hardware-configuration.nix | 6 +++--- 2 files changed, 5 insertions(+), 7 deletions(-) diff --git a/configuration.nix b/configuration.nix index 22776fb..a65f8ff 100644 --- a/configuration.nix +++ b/configuration.nix @@ -2,9 +2,9 @@ { # Work-around for running out of space on /boot - disabledModules = [ "system/boot/loader/raspberrypi/raspberrypi.nix" ]; + #disabledModules = [ "system/boot/loader/raspberrypi/raspberrypi.nix" ]; imports = [ - ./modules/system/boot/loader/raspberrypi/raspberrypi.nix + #./modules/system/boot/loader/raspberrypi/raspberrypi.nix ./hardware-configuration.nix ./inquisitor.nix ]; @@ -36,8 +36,6 @@ }; }; - security.hideProcessInformation = true; - environment.systemPackages = with pkgs; [ wget vimHugeX curl git htop tmux manpages diff --git a/hardware-configuration.nix b/hardware-configuration.nix index e4f66de..c28e2fa 100644 --- a/hardware-configuration.nix +++ b/hardware-configuration.nix @@ -1,8 +1,8 @@ { config, pkgs, lib, ... }: { - disabledModules = [ "system/boot/loader/raspberrypi/raspberrypi.nix" ]; - imports = [ ./modules/system/boot/loader/raspberrypi/raspberrypi.nix ]; + #disabledModules = [ "system/boot/loader/raspberrypi/raspberrypi.nix" ]; + #imports = [ ./modules/system/boot/loader/raspberrypi/raspberrypi.nix ]; boot.loader.grub.enable = false; boot.loader.raspberryPi = { @@ -19,7 +19,7 @@ boot_delay=10 ''; }; - boot.loader.systemd-boot.configurationLimit = 1; + #boot.loader.systemd-boot.configurationLimit = 1; # This is necessary for the rpi3. boot.kernelPackages = pkgs.linuxPackages_rpi4;