Systemdification is real

This commit is contained in:
xmm16 2024-12-12 20:09:50 -03:00
commit 24d6e7dd74
No known key found for this signature in database

View file

@ -11,6 +11,33 @@
generationsDir.copyKernels = true; generationsDir.copyKernels = true;
}; };
boot.initrd = {
systemd = {
enable = true;
dbus = {
enable = true;
};
tpm2.enable = true;
};
};
boot.plymouth = {
enable = true;
theme = "tribar";
};
systemd = {
tpm2.enable = true;
sysupdate.enable = true;
oomd = {
enable = true;
enableRootSlice = true;
enableSystemSlice = true;
enableUserSlices = true;
};
enableStrictShellChecks = true;
};
boot.kernelPackages = pkgs.linuxPackages_cachyos-lto; boot.kernelPackages = pkgs.linuxPackages_cachyos-lto;
boot.kernelParams = [ boot.kernelParams = [
@ -26,7 +53,6 @@
"debugfs=off" "debugfs=off"
"oops=panic" "oops=panic"
"module.sig_enforce=1" "module.sig_enforce=1"
"lockdown=confidentiality"
"mce=0" "mce=0"
"quiet" "quiet"
"splash" "splash"
@ -170,8 +196,6 @@
forcePageTableIsolation = true; forcePageTableIsolation = true;
}; };
systemd.tpm2.enable = true;
fonts = { fonts = {
enableGhostscriptFonts = true; enableGhostscriptFonts = true;
enableDefaultPackages = true; enableDefaultPackages = true;