From b8f5277f01daae48046ccf643a5eef5a7ec6ab96 Mon Sep 17 00:00:00 2001 From: jacekpoz Date: Thu, 12 Sep 2024 15:02:01 +0200 Subject: [PATCH] or maybe not --- hosts/common/core/fs-hardening.nix | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/hosts/common/core/fs-hardening.nix b/hosts/common/core/fs-hardening.nix index f42042a..6daa538 100644 --- a/hosts/common/core/fs-hardening.nix +++ b/hosts/common/core/fs-hardening.nix @@ -1,7 +1,3 @@ _: { - fileSystems = let - defaults = [ "nodev" "nosuid" "noexec" ]; - in { - "/boot".options = defaults; - }; + fileSystems."/boot".options = [ "nodev" "nosuid" "noexec" ]; }