Cleanup with LSP guidance

This commit is contained in:
2026-02-17 15:21:54 -07:00
parent 8ef20405ba
commit 432d5df195
17 changed files with 71 additions and 53 deletions

View File

@@ -1,4 +1,4 @@
{ config, pkgs, ... }:
{ pkgs, ... }:
{
boot.loader.systemd-boot = {
@@ -12,7 +12,11 @@
boot.kernelPackages = pkgs.linuxPackages_latest;
boot.kernelModules = [ "tcp_bbr" ];
boot.initrd.kernelModules = [ "amdgpu" ];
boot.kernelParams = [ "preempt=full" "quiet" "udev.log_priority=3" ];
boot.kernelParams = [
"preempt=full"
"quiet"
"udev.log_priority=3"
];
boot.tmp.useTmpfs = true;
boot.tmp.tmpfsSize = "4G";