Actually working (probably) root on tmpfs

This commit is contained in:
2022-02-11 01:15:24 +00:00
parent ee353607d2
commit 99f7f80ec5
10 changed files with 160 additions and 28 deletions

View File

@@ -1,5 +1,13 @@
{ lib, pkgs, inputs, ... }:
{
fileSystems = {
"/persist" = {
device = "/dev/disk/by-label/persist";
fsType = "ext4";
neededForBoot = true;
};
};
my = {
server.enable = true;
};