forked from Fediversity/Fediversity
16 lines
279 B
Nix
16 lines
279 B
Nix
{ lib, ... }:
|
|
|
|
{
|
|
fileSystems."/" = {
|
|
device = "/dev/disk/by-uuid/3802a66d-e31a-4650-86f3-b51b11918853";
|
|
fsType = "ext4";
|
|
};
|
|
|
|
fileSystems."/boot" = {
|
|
device = "/dev/disk/by-uuid/2CE2-1173";
|
|
fsType = "vfat";
|
|
};
|
|
|
|
networking.useDHCP = lib.mkDefault true;
|
|
}
|