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;