1
1
Fork 0

Disable some stuff temporarily

This commit is contained in:
root 2022-01-08 14:57:28 -08:00
parent 255ccddd51
commit aba0a306bc
2 changed files with 5 additions and 7 deletions

View File

@ -2,9 +2,9 @@
{ {
# Work-around for running out of space on /boot # Work-around for running out of space on /boot
disabledModules = [ "system/boot/loader/raspberrypi/raspberrypi.nix" ]; #disabledModules = [ "system/boot/loader/raspberrypi/raspberrypi.nix" ];
imports = [ imports = [
./modules/system/boot/loader/raspberrypi/raspberrypi.nix #./modules/system/boot/loader/raspberrypi/raspberrypi.nix
./hardware-configuration.nix ./hardware-configuration.nix
./inquisitor.nix ./inquisitor.nix
]; ];
@ -36,8 +36,6 @@
}; };
}; };
security.hideProcessInformation = true;
environment.systemPackages = with pkgs; environment.systemPackages = with pkgs;
[ [
wget vimHugeX curl git htop tmux manpages wget vimHugeX curl git htop tmux manpages

View File

@ -1,8 +1,8 @@
{ config, pkgs, lib, ... }: { config, pkgs, lib, ... }:
{ {
disabledModules = [ "system/boot/loader/raspberrypi/raspberrypi.nix" ]; #disabledModules = [ "system/boot/loader/raspberrypi/raspberrypi.nix" ];
imports = [ ./modules/system/boot/loader/raspberrypi/raspberrypi.nix ]; #imports = [ ./modules/system/boot/loader/raspberrypi/raspberrypi.nix ];
boot.loader.grub.enable = false; boot.loader.grub.enable = false;
boot.loader.raspberryPi = { boot.loader.raspberryPi = {
@ -19,7 +19,7 @@
boot_delay=10 boot_delay=10
''; '';
}; };
boot.loader.systemd-boot.configurationLimit = 1; #boot.loader.systemd-boot.configurationLimit = 1;
# This is necessary for the rpi3. # This is necessary for the rpi3.
boot.kernelPackages = pkgs.linuxPackages_rpi4; boot.kernelPackages = pkgs.linuxPackages_rpi4;