2024-11-18 12:11:32 +01:00
|
|
|
{ lib, ... }:
|
2024-11-18 10:48:16 +01:00
|
|
|
|
|
|
|
{
|
2024-11-18 12:11:32 +01:00
|
|
|
fileSystems."/" = {
|
|
|
|
device = "/dev/disk/by-uuid/3802a66d-e31a-4650-86f3-b51b11918853";
|
|
|
|
fsType = "ext4";
|
|
|
|
};
|
2024-11-18 10:48:16 +01:00
|
|
|
|
2024-11-18 12:11:32 +01:00
|
|
|
fileSystems."/boot" = {
|
|
|
|
device = "/dev/disk/by-uuid/2CE2-1173";
|
|
|
|
fsType = "vfat";
|
|
|
|
};
|
2024-11-18 10:48:16 +01:00
|
|
|
|
|
|
|
networking.useDHCP = lib.mkDefault true;
|
|
|
|
|
|
|
|
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
|
|
|
}
|