Merge release-21.05 into staging-next-21.05

This commit is contained in:
github-actions[bot]
2021-08-02 00:02:34 +00:00
committed by GitHub
3 changed files with 11 additions and 3 deletions
+5 -1
View File
@@ -644,7 +644,11 @@ in
]; ];
fileSystems."/" = fileSystems."/" =
{ fsType = "tmpfs"; # This module is often over-layed onto an existing host config
# that defines `/`. We use mkOverride 60 to override standard
# values, but at the same time leave room for mkForce values
# targeted at the image build.
{ fsType = mkOverride 60 "tmpfs";
options = [ "mode=0755" ]; options = [ "mode=0755" ];
}; };
+5 -1
View File
@@ -30,7 +30,11 @@ with lib;
else [ pkgs.grub2 pkgs.syslinux ]); else [ pkgs.grub2 pkgs.syslinux ]);
fileSystems."/" = fileSystems."/" =
{ fsType = "tmpfs"; # This module is often over-layed onto an existing host config
# that defines `/`. We use mkOverride 60 to override standard
# values, but at the same time leave room for mkForce values
# targeted at the image build.
{ fsType = mkOverride 60 "tmpfs";
options = [ "mode=0755" ]; options = [ "mode=0755" ];
}; };
+1 -1
View File
@@ -458,7 +458,7 @@ in
description = "The flake reference to which <option>from></option> is to be rewritten."; description = "The flake reference to which <option>from></option> is to be rewritten.";
}; };
flake = mkOption { flake = mkOption {
type = types.unspecified; type = types.nullOr types.attrs;
default = null; default = null;
example = literalExample "nixpkgs"; example = literalExample "nixpkgs";
description = '' description = ''