Compare commits

..

2 Commits

Author SHA1 Message Date
a4b77336d7
nullbox, rpi4: hold kernel at 6.6 LTS 2024-08-09 18:50:23 -04:00
dce1a77c1d
nullbox: disable Unbound 2024-08-09 18:47:25 -04:00
2 changed files with 6 additions and 1 deletions

View File

@ -64,7 +64,6 @@
autolock = true; autolock = true;
}; };
}; };
programs.unbound.enable = true;
common.remoteAccess.enable = true; common.remoteAccess.enable = true;
session = lib.mkDefault "hyprland"; session = lib.mkDefault "hyprland";
hardware.nvidia.modesetting.enable = true; hardware.nvidia.modesetting.enable = true;
@ -89,6 +88,9 @@
}; };
}; };
# temporary while i am away from server
boot.kernelPackages = pkgs.linuxPackages_6_6;
networking.wg-quick.interfaces.wg0 = { networking.wg-quick.interfaces.wg0 = {
configFile = "/etc/wireguard/wg0.conf"; configFile = "/etc/wireguard/wg0.conf";
autostart = true; autostart = true;

View File

@ -30,6 +30,9 @@
# Enables the generation of /boot/extlinux/extlinux.conf # Enables the generation of /boot/extlinux/extlinux.conf
boot.loader.generic-extlinux-compatible.enable = true; boot.loader.generic-extlinux-compatible.enable = true;
# temporary while i am away from server
boot.kernelPackages = pkgs.linuxPackages_6_6;
nixfiles = { nixfiles = {
profile.server.enable = true; profile.server.enable = true;
}; };