more stuff

This commit is contained in:
gwg313 2025-02-09 11:16:45 -05:00
parent 42a0bf27e0
commit fe34badada
Signed by: gwg313
GPG key ID: 60FF63B4826B7400
24 changed files with 904 additions and 2343 deletions

View file

@ -122,9 +122,13 @@
environment = {
loginShellInit = ''
if [ -z $DISPLAY ] && [ "$(tty)" = "/dev/tty1" ]; then
exec Hyprland
fi
# if [ -z $DISPLAY ] && [ "$(tty)" = "/dev/tty1" ]; then
# exec Hyprland
# fi
if (empty $env.DISPLAY) && ($tty == '/dev/tty1') {
exec Hyprland
}
''; # Will automatically open Hyprland when logged into tty1
variables = {
TERMINAL = "alacritty";

View file

@ -1,5 +1,6 @@
{pkgs, ...}: {
boot.kernelPackages = pkgs.linuxPackages_hardened;
{ pkgs, ... }:
{
# boot.kernelPackages = pkgs.linuxPackages_hardened;
boot.kernelParams = [
# Disable slab merging to prevent heap exploitation
"slab_nomerge"