From 9c8d01590243204331b2fa1acab4ec9eefa7add1 Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Fri, 30 Jul 2021 18:22:02 -0600 Subject: [PATCH] [NixOS] Don't set trusted users twice --- nixos/cachix.nix | 1 - nixos/users.nix | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/nixos/cachix.nix b/nixos/cachix.nix index 069c2cc9..87f5c327 100644 --- a/nixos/cachix.nix +++ b/nixos/cachix.nix @@ -11,6 +11,5 @@ "taffy.cachix.org-1:H0iiOGeXnLOAptADO4i3AiDIOladTcZYxXp+P0lOvHw=" "waymonad.cachix.org-1:Z4Nbjc3iYJNFZi0eAgzqLWFBuDRClAy1prZBv7eK64A=" ]; - trustedUsers = [ "root" "imalison" "kat" ]; }; } diff --git a/nixos/users.nix b/nixos/users.nix index f1c8d5d5..4cd71a08 100644 --- a/nixos/users.nix +++ b/nixos/users.nix @@ -38,5 +38,5 @@ }; }; - nix.trustedUsers = ["imalison" "kat"]; + nix.trustedUsers = [ "root" "imalison" "kat" ]; }