0
0
Fork 0
flake/hardware/devices/wahnix.nix

19 lines
401 B
Nix
Raw Normal View History

2025-01-03 01:26:51 +00:00
{...}: {
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"];
};
2025-01-07 00:40:07 +00:00
hardware.enableRedistributableFirmware = true;
2025-01-03 01:26:51 +00:00
nixpkgs.hostPlatform = "x86_64-linux";
}