From 66e76b11653b3daa4066da4f9579bf1e76c9f0ad Mon Sep 17 00:00:00 2001
From: Timo Kaufmann <timokau@zoho.com>
Date: Sat, 16 Apr 2022 15:26:28 +0200
Subject: [PATCH] Remove myself (timokau) from users

Now that marvin-mk2 is discontinued, I do not need access anymore. The
less people with access the better.
---
 users/timokau.nix | 20 --------------------
 1 file changed, 20 deletions(-)
 delete mode 100644 users/timokau.nix

diff --git a/users/timokau.nix b/users/timokau.nix
deleted file mode 100644
index 3bf4c24..0000000
--- a/users/timokau.nix
+++ /dev/null
@@ -1,20 +0,0 @@
-{ config, pkgs, lib, ... }:
-let
-  userLib = import ./lib.nix { inherit lib; };
-  keys = [
-    "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIL0B85hC3DH2QDmhbaeAItRSdERs/3kKz+GEDPqDCXeE"
-    "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEv6hnwYUT6oQvHmRK08IN8GnW9vywF/bpcDEq3jn9QP"
-  ];
-
-in
-{
-  users.users.timo = {
-    openssh.authorizedKeys.keys = keys;
-    useDefaultShell = true;
-    isNormalUser = true;
-    extraGroups = [
-      "wheel" "trusted"
-    ];
-    uid = userLib.mkUid "timo";
-  };
-}