26 lines
493 B
Nix
26 lines
493 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
networking = {
|
|
hostName = "marty-pc";
|
|
interfaces = {
|
|
enp42s0 = {
|
|
wakeOnLan = {
|
|
enable = true;
|
|
policy = [ "magic" ];
|
|
};
|
|
};
|
|
};
|
|
};
|
|
fileSystems = {
|
|
"/mnt/SSD" = {
|
|
device = "/dev/disk/by-uuid/af5282f0-0e02-4532-902f-97509af70d11";
|
|
fsType = "ext4";
|
|
};
|
|
"/mnt/HDD" = {
|
|
device = "/dev/disk/by-uuid/41e7ec41-2e43-4254-9f00-f4be98cddc6e";
|
|
fsType = "ext4";
|
|
};
|
|
};
|
|
|
|
}
|