This commit is contained in:
Tristan 2023-04-24 10:49:45 +01:00
parent 3befc4eee8
commit c76ad7b231

View file

@ -49,13 +49,20 @@
options = [ "subvol=@home" "compress=zstd" "autodefrag" ]; options = [ "subvol=@home" "compress=zstd" "autodefrag" ];
}; };
fileSystems."/swap" =
{
device = "/dev/disk/by-uuid/48a07e82-1090-448c-a751-3a410afba0f7";
fsType = "btrfs";
options = [ "subvol=@swap" ];
};
fileSystems."/boot" = fileSystems."/boot" =
{ {
device = "/dev/disk/by-uuid/EED9-A165"; device = "/dev/disk/by-uuid/EED9-A165";
fsType = "vfat"; fsType = "vfat";
}; };
swapDevices = [ ]; swapDevices = [{ device = "/swap/swapfile"; }];
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking # Enables DHCP on each ethernet and wireless interface. In case of scripted networking
# (the default) this is the recommended approach. When using systemd-networkd it's # (the default) this is the recommended approach. When using systemd-networkd it's