17 lines
351 B
Nix
17 lines
351 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"];
|
||
|
};
|
||
|
|
||
|
nixpkgs.hostPlatform = "x86_64-linux";
|
||
|
}
|