Files
nixos/modules/hosts/HACKSTATION/hackstationConfiguration.nix

13 lines
202 B
Nix

{
self,
inputs,
...
}: {
flake.nixosModules.hackstationConfiguration = {...}: {
networking = {
interfaces.enp5s0.wakeOnLan.enable = true;
hostName = "HACKSTATION";
};
};
}