allow dmesg for all users

This commit is contained in:
Christoph Cullmann 2024-11-24 18:10:55 +01:00
parent d4eb5d82c3
commit 67c32308af
No known key found for this signature in database

View file

@ -48,6 +48,12 @@ in
"pcie_aspm.policy=performance"
];
# setup some sysctl stuff
boot.kernel.sysctl = {
# allow dmesg for all users
"kernel.dmesg_restrict" = 0;
};
# Use the systemd-boot EFI boot loader.
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;