From b84f8fdaa0a87b0fc4d50a471b4cf691f3b0e5e8 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Fri, 4 Jul 2025 23:10:29 +0200 Subject: [PATCH] networking: provide hostname-debian by default This is first and foremost to provide compat with scripts that call the hostname executable to retrieve the hostname, an assumptions we probably should not be breaking. --- nixos/modules/tasks/network-interfaces.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nixos/modules/tasks/network-interfaces.nix b/nixos/modules/tasks/network-interfaces.nix index 0e5ceab3ab30..76f1262506d5 100644 --- a/nixos/modules/tasks/network-interfaces.nix +++ b/nixos/modules/tasks/network-interfaces.nix @@ -1641,6 +1641,7 @@ in environment.systemPackages = [ pkgs.host + pkgs.hostname-debian pkgs.iproute2 pkgs.iputils ]