update profile

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

View file

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