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" ]; }