about summary refs log tree commit diff
path: root/nixos/tests/rsyslogd.nix
diff options
context:
space:
mode:
authorRobert Hensing <robert@roberthensing.nl>2022-03-21 00:15:30 +0100
committerRobert Hensing <robert@roberthensing.nl>2022-03-28 14:11:58 +0200
commitaa0f27abb06ca66a1dc99493ada65e2bbd6000c9 (patch)
tree9ba9187aaa5cdd641506fcde184c4cb850885f5a /nixos/tests/rsyslogd.nix
parentecbf5ae27a9ee6e877a20e3abce85c21e4bda9c2 (diff)
treewide: machine -> nodes.machine
Diffstat (limited to 'nixos/tests/rsyslogd.nix')
-rw-r--r--nixos/tests/rsyslogd.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/tests/rsyslogd.nix b/nixos/tests/rsyslogd.nix
index f35db3bd44b83..049acdcd43934 100644
--- a/nixos/tests/rsyslogd.nix
+++ b/nixos/tests/rsyslogd.nix
@@ -11,7 +11,7 @@ with pkgs.lib;
     name = "rsyslogd-test1";
     meta.maintainers = [ pkgs.lib.maintainers.aanderse ];
 
-    machine = { config, pkgs, ... }: {
+    nodes.machine = { config, pkgs, ... }: {
       services.rsyslogd.enable = true;
       services.journald.forwardToSyslog = false;
     };
@@ -27,7 +27,7 @@ with pkgs.lib;
     name = "rsyslogd-test2";
     meta.maintainers = [ pkgs.lib.maintainers.aanderse ];
 
-    machine = { config, pkgs, ... }: {
+    nodes.machine = { config, pkgs, ... }: {
       services.rsyslogd.enable = true;
     };