Initial template repo
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
# Linux CachyOS Kernel (Gaming optimiert - EMPFOHLEN!)
|
||||
# - Spezial-Kernel für Gaming & Desktop Performance
|
||||
# - Bereits im base.nix aktiviert (das ist Standard)
|
||||
# - CachyOS-Patchset mit BORE Scheduler
|
||||
# - ~5-10% bessere Gaming-Performance als Zen
|
||||
boot.kernelPackages = pkgs.linuxPackages_cachyos;
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
# Standard Linux Kernel (stabil)
|
||||
# - Empfohlen für Server & alte Hardware
|
||||
# - Nicht für Gaming optimiert
|
||||
boot.kernelPackages = pkgs.linuxPackages;
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
# Linux Hardened Kernel (Sicherheit)
|
||||
# - Zusätzliche Sicherheits-Patches
|
||||
# - Speicherschutz, Exploit-Mitigation
|
||||
# - Langsamer als Standard/Zen (Security > Performance)
|
||||
boot.kernelPackages = pkgs.linuxPackages_hardened;
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
# Linux Xanmod Kernel (Extreme Performance)
|
||||
# - Aggressive Performance-Optimierungen
|
||||
# - Nicht immer stabil
|
||||
# - Mehr Performance als CachyOS (aber riskanter)
|
||||
# - Für Enthusiasten
|
||||
boot.kernelPackages = pkgs.linuxPackages_xanmod;
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
# Linux Zen Kernel (Gaming-optimiert)
|
||||
# - Bessere Responsiveness
|
||||
# - Optimiert für Desktop/Gaming Workloads
|
||||
# - Schnellere Builds, kleinere Größe
|
||||
boot.kernelPackages = pkgs.linuxPackages_zen;
|
||||
}
|
||||
Reference in New Issue
Block a user