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