config.nix/marty-server.nix

27 lines
381 B
Nix

{
config,
lib,
pkgs,
...
}:
{
networking = {
hostName = "marty-server";
interfaces = {
eno1 = {
wakeOnLan = {
enable = true;
policy = [ "magic" ];
};
};
};
};
fileSystems = {
"/mnt/Data" = {
device = "/dev/disk/by-uuid/20eaea9c-6924-40c6-a784-cd5018d8fabb";
fsType = "ext4";
};
};
}