[NixOS] Don't set trusted users twice

This commit is contained in:
Ivan Malison 2021-07-30 18:22:02 -06:00
parent fe59575676
commit 9c8d015902
No known key found for this signature in database
GPG Key ID: 62530EFBE99DC2F8
2 changed files with 1 additions and 2 deletions

View File

@ -11,6 +11,5 @@
"taffy.cachix.org-1:H0iiOGeXnLOAptADO4i3AiDIOladTcZYxXp+P0lOvHw=" "taffy.cachix.org-1:H0iiOGeXnLOAptADO4i3AiDIOladTcZYxXp+P0lOvHw="
"waymonad.cachix.org-1:Z4Nbjc3iYJNFZi0eAgzqLWFBuDRClAy1prZBv7eK64A=" "waymonad.cachix.org-1:Z4Nbjc3iYJNFZi0eAgzqLWFBuDRClAy1prZBv7eK64A="
]; ];
trustedUsers = [ "root" "imalison" "kat" ];
}; };
} }

View File

@ -38,5 +38,5 @@
}; };
}; };
nix.trustedUsers = ["imalison" "kat"]; nix.trustedUsers = [ "root" "imalison" "kat" ];
} }