Files
nixos/modules/hosts/HACKSTATION/hackstationConfiguration.nix
2026-07-12 14:08:11 +01:00

12 lines
196 B
Nix

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