Skip to content

Commit

Permalink
nix: enable wakeOnLan for dt
Browse files Browse the repository at this point in the history
  • Loading branch information
FredeEB committed Mar 17, 2024
1 parent 33ebd76 commit b65ab26
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions systems/dt.nix
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,11 @@
boot.kernelModules = [ "kvm-amd" "wl" "b43" ];
boot.extraModulePackages = [ config.boot.kernelPackages.broadcom_sta ];

networking.hostName = "dt";
networking.useDHCP = lib.mkDefault true;
networking = {
interfaces.enp39s0.wakeOnLan.enable = true;
hostName = "dt";
useDHCP = lib.mkDefault true;
};
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware.cpu.amd.updateMicrocode =
lib.mkDefault config.hardware.enableRedistributableFirmware;
Expand Down

0 comments on commit b65ab26

Please sign in to comment.