Mac fixes
This commit is contained in:
parent
96cea1bb7b
commit
af883624f5
4 changed files with 78 additions and 72 deletions
|
|
@ -16,7 +16,7 @@
|
|||
fileSystems."/" = {
|
||||
device = "tmpfs";
|
||||
fsType = "tmpfs";
|
||||
options = [ "defaults" "size=3G" "mode=755" ];
|
||||
options = [ "defaults" "size=8G" "mode=755" ];
|
||||
};
|
||||
fileSystems."/persist" =
|
||||
{ device = "/dev/disk/by-label/nixos";
|
||||
|
|
@ -29,6 +29,11 @@
|
|||
options = [ "bind" ];
|
||||
depends = [ "/persist" ];
|
||||
};
|
||||
fileSystems."/tmp" = {
|
||||
device = "/persist/tmp";
|
||||
options = [ "bind" ];
|
||||
depends = [ "/persist" ];
|
||||
};
|
||||
fileSystems."/boot" =
|
||||
{ device = "/dev/disk/by-label/EFI\\x20-\\x20NIXOS";
|
||||
fsType = "vfat";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue