18 lines
401 B
Nix
18 lines
401 B
Nix
{...}: {
|
|
networking.hostName = "wahnix";
|
|
|
|
fileSystems."/" = {
|
|
device = "/dev/disk/by-uuid/42e669ff-7713-4210-81e0-f0024b4e7e81";
|
|
fsType = "ext4";
|
|
};
|
|
|
|
fileSystems."/boot/efi" = {
|
|
device = "/dev/disk/by-uuid/A454-A58C";
|
|
fsType = "vfat";
|
|
options = ["fmask=0022" "dmask=0022"];
|
|
};
|
|
|
|
hardware.enableRedistributableFirmware = true;
|
|
|
|
nixpkgs.hostPlatform = "x86_64-linux";
|
|
}
|