From 39cf1e6fbe24c1e8fce9d9618ca964b4ef486ed2 Mon Sep 17 00:00:00 2001 From: Malo Bourgon Date: Sat, 13 Aug 2022 15:49:25 -0700 Subject: [PATCH] Minor tweaks to `nix` module options defs --- modules/nix/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/nix/default.nix b/modules/nix/default.nix index db1d40fa..8d05cf84 100644 --- a/modules/nix/default.nix +++ b/modules/nix/default.nix @@ -204,7 +204,7 @@ in envVars = mkOption { type = types.attrs; internal = true; - default = {}; + default = { }; description = "Environment variables used by Nix."; }; @@ -212,7 +212,7 @@ in type = types.bool; default = true; description = '' - If set, NixOS will enforce the immutability of the Nix store + If set, Nix will enforce the immutability of the Nix store by making /nix/store a read-only bind mount. Nix will automatically make the store writable when needed.