remove worldofpeace ()

As announced by worldofpeace in
https://github.com/NixOS/nixpkgs/issues/121769
they step official away from the project.
This commit is contained in:
Jörg Thalheim 2021-05-09 17:10:16 +01:00 committed by GitHub
parent dc4a411085
commit d7883e794d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,24 +0,0 @@
{ config, pkgs, lib, ... }:
let
userLib = import ./lib.nix { inherit lib; };
keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIHGEkPcumvhBjIZ44tnhN6+hZR8vsCSLD4r1dFzlnXA4 Nix Community - worldofpeace"
];
in
{
users.users.worldofpeace = {
openssh.authorizedKeys.keys = keys;
useDefaultShell = true;
isNormalUser = true;
extraGroups = [
"wheel"
];
uid = userLib.mkUid "wope";
};
nix.trustedUsers = [
"worldofpeace"
];
}