From 40f2d0b242fd107904a79c28ac473070e556fe18 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kier=C3=A1n=20Meinhardt?= Date: Mon, 5 Jan 2026 08:15:39 +0100 Subject: [PATCH] nixos/nspawn-container: fix typo in comment --- .../virtualisation/nspawn-container/run-nspawn/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/virtualisation/nspawn-container/run-nspawn/default.nix b/nixos/modules/virtualisation/nspawn-container/run-nspawn/default.nix index 477f8179d34e..3301e9a4d512 100644 --- a/nixos/modules/virtualisation/nspawn-container/run-nspawn/default.nix +++ b/nixos/modules/virtualisation/nspawn-container/run-nspawn/default.nix @@ -1,6 +1,6 @@ { python3Packages, systemd }: python3Packages.callPackage ./package.nix { - # We want `pkgs.systemd`, *not* `python3Packages.system`. + # We want `pkgs.systemd`, *not* `python3Packages.systemd`. inherit systemd; }