More nonsense.

This commit is contained in:
Joseph Hanson 2024-05-25 11:36:14 -05:00
parent d24b956278
commit febd9cf53f
Signed by: jahanson
SSH key fingerprint: SHA256:vy6dKBECV522aPAwklFM3ReKAVB086rT3oWwiuiFG7o

View file

@ -8,7 +8,8 @@
boot.growPartition = true;
boot.loader.grub.device = "/dev/vda";
fileSystems."/" = lib.mkDefault { device = "/dev/vda1"; fsType = "ext4"; };
fileSystems."/boot" = lib.mkDefault { device = "/dev/vda1"; fsType = "vfat"; options=[ "fmask=0022" "dmask=0022" ]; };
fileSystems."/" = lib.mkDefault { device = "/dev/vda2"; fsType = "ext4"; };
networking.useNetworkd = true;
};