about summary refs log tree commit diff
path: root/nixos/modules
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/modules')
-rw-r--r--nixos/modules/security.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/modules/security.nix b/nixos/modules/security.nix
index 4d79be9..e945fb0 100644
--- a/nixos/modules/security.nix
+++ b/nixos/modules/security.nix
@@ -2,7 +2,7 @@
 
 {
   # Security-related system tweaks
-  
+
   # Prevent replacing the running kernel without reboot.
   security.protectKernelImage = true;
 
@@ -15,7 +15,7 @@
   boot.cleanTmpDir = lib.mkDefault (!config.boot.tmpOnTmpfs);
 
   boot.kernel.sysctl = {
-        # The Magic SysRq key is a key combo that allows users connected to the
+    # The Magic SysRq key is a key combo that allows users connected to the
     # system console of a Linux kernel to perform some low-level commands.
     # Disable it, since we don't need it, and is a potential security concern.
     "kernel.sysrq" = 0;