13 lines
202 B
Nix
13 lines
202 B
Nix
{
|
|
self,
|
|
inputs,
|
|
...
|
|
}: {
|
|
flake.nixosModules.hackstationConfiguration = {...}: {
|
|
networking = {
|
|
interfaces.enp5s0.wakeOnLan.enable = true;
|
|
hostName = "HACKSTATION";
|
|
};
|
|
};
|
|
}
|