Merge staging-next-21.05 into staging-21.05
This commit is contained in:
commit
abbdf9574b
@ -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" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -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" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -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 = ''
|
||||||
|
Loading…
x
Reference in New Issue
Block a user