From 3361b7ea0257d8667d3953e583972ebc7407d60f Mon Sep 17 00:00:00 2001 From: TEC Date: Sat, 24 Jun 2023 14:39:32 +0800 Subject: [PATCH] Renamed trusted-users setting --- modules/admin.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/admin.nix b/modules/admin.nix index 586997a..33e3e6d 100644 --- a/modules/admin.nix +++ b/modules/admin.nix @@ -9,5 +9,5 @@ openssh.authorizedKeys.keys = [ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOZZqcJOLdN+QFHKyW8ST2zz750+8TdvO9IT5geXpQVt tec@tranquillity" ]; }; security.sudo.wheelNeedsPassword = false; - nix.trustedUsers = [ "@wheel" ]; # https://github.com/serokell/deploy-rs/issues/25 + nix.settings.trusted-users = [ "@wheel" ]; # https://github.com/serokell/deploy-rs/issues/25 }