chore: Remove banned user
Change-Id: Icd61f7c567a327c74a4f381168e94737b2b30702 Reviewed-on: https://cl.tvl.fyi/c/depot/+/2422 Tested-by: BuildkiteCI Reviewed-by: edef <edef@edef.eu> Reviewed-by: tazjin <mail@tazj.in>
This commit is contained in:
parent
5868d4bd49
commit
29db630a39
10 changed files with 0 additions and 93 deletions
|
@ -1,2 +0,0 @@
|
||||||
owners:
|
|
||||||
- edef
|
|
|
@ -1,32 +0,0 @@
|
||||||
{ lib, pkgs, ... }:
|
|
||||||
|
|
||||||
let
|
|
||||||
|
|
||||||
inherit (lib)
|
|
||||||
lowerChars
|
|
||||||
replaceStrings
|
|
||||||
upperChars
|
|
||||||
;
|
|
||||||
|
|
||||||
caseFold = replaceStrings upperChars (map (c: "!" + c) lowerChars);
|
|
||||||
|
|
||||||
in
|
|
||||||
|
|
||||||
{ path, version, sha256 }:
|
|
||||||
|
|
||||||
pkgs.fetchurl {
|
|
||||||
name = "source";
|
|
||||||
url = "https://proxy.golang.org/${caseFold path}/@v/v${version}.zip";
|
|
||||||
inherit sha256;
|
|
||||||
|
|
||||||
recursiveHash = true;
|
|
||||||
downloadToTemp = true;
|
|
||||||
|
|
||||||
postFetch = ''
|
|
||||||
unpackDir="$TMPDIR/unpack"
|
|
||||||
mkdir "$unpackDir"
|
|
||||||
|
|
||||||
${pkgs.unzip}/bin/unzip "$downloadedFile" -d "$unpackDir"
|
|
||||||
mv "$unpackDir/${path}@v${version}" "$out"
|
|
||||||
'';
|
|
||||||
}
|
|
|
@ -426,12 +426,6 @@ in lib.fix(self: {
|
||||||
openssh.authorizedKeys.keys = depot.users.eta.keys.whitby;
|
openssh.authorizedKeys.keys = depot.users.eta.keys.whitby;
|
||||||
};
|
};
|
||||||
|
|
||||||
users.v = {
|
|
||||||
isNormalUser = true; # Questionable...
|
|
||||||
extraGroups = [ "git" ];
|
|
||||||
openssh.authorizedKeys.keys = depot.users.v.keys.whitby;
|
|
||||||
};
|
|
||||||
|
|
||||||
users.cynthia = {
|
users.cynthia = {
|
||||||
isNormalUser = true; # I'm normal OwO :3
|
isNormalUser = true; # I'm normal OwO :3
|
||||||
extraGroups = [ "git" ];
|
extraGroups = [ "git" ];
|
||||||
|
|
|
@ -113,12 +113,6 @@
|
||||||
email = "implr@hackerspace.pl";
|
email = "implr@hackerspace.pl";
|
||||||
password = "{ARGON2}$argon2id$v=19$m=65536,t=2,p=1$SHRFps5sVgyUXYdmqGPw9g$tEx9DwKK1RjWlw52GLwOZ/iHep+QJboaZE83f1pXSwQ";
|
password = "{ARGON2}$argon2id$v=19$m=65536,t=2,p=1$SHRFps5sVgyUXYdmqGPw9g$tEx9DwKK1RjWlw52GLwOZ/iHep+QJboaZE83f1pXSwQ";
|
||||||
}
|
}
|
||||||
{
|
|
||||||
username = "v";
|
|
||||||
displayName = "V";
|
|
||||||
email = "v@anomalous.eu";
|
|
||||||
password = "{ARGON2}$argon2id$v=19$m=65536,t=2,p=1$Wa11vk3gQKhJr1uzvtRTRQ$RHfvcC2j6rDUgWfezm05N03LeGIEezeKtmFmt+rfvM4";
|
|
||||||
}
|
|
||||||
{
|
{
|
||||||
username = "ben";
|
username = "ben";
|
||||||
email = "tvl@benjojo.co.uk";
|
email = "tvl@benjojo.co.uk";
|
||||||
|
|
3
third_party/loxy/OWNERS
vendored
3
third_party/loxy/OWNERS
vendored
|
@ -1,3 +0,0 @@
|
||||||
owners:
|
|
||||||
- v
|
|
||||||
- edef
|
|
31
third_party/loxy/default.nix
vendored
31
third_party/loxy/default.nix
vendored
|
@ -1,31 +0,0 @@
|
||||||
{ lib, pkgs, depot, ... }:
|
|
||||||
|
|
||||||
let
|
|
||||||
|
|
||||||
inherit (depot.nix) fetchGoModule;
|
|
||||||
|
|
||||||
in
|
|
||||||
|
|
||||||
pkgs.buildGoModule rec {
|
|
||||||
pname = "loxy";
|
|
||||||
version = "0.1.1";
|
|
||||||
|
|
||||||
src = fetchGoModule {
|
|
||||||
path = "go.anomalous.eu/loxy";
|
|
||||||
inherit version;
|
|
||||||
sha256 = "0k1i7wa0v9h7r4kb7pjd3pzvcjrnsp58cfh51z73s74il7462sr5";
|
|
||||||
};
|
|
||||||
|
|
||||||
vendorSha256 = "0243wq6crzy86vc5cm1nijddsrcllr3c66xkd6q8x16jrvnv09jx";
|
|
||||||
|
|
||||||
postInstall = ''
|
|
||||||
install -D -m 0644 -t $out/share/man/man8 loxy.8
|
|
||||||
'';
|
|
||||||
|
|
||||||
meta = with lib; {
|
|
||||||
description = "a logging IRC proxy";
|
|
||||||
homepage = "https://anomalous.eu/projects/loxy";
|
|
||||||
license = licenses.gpl3Plus;
|
|
||||||
maintainers = with maintainers; [ V edef ];
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -131,7 +131,6 @@
|
||||||
thttpd
|
thttpd
|
||||||
tree
|
tree
|
||||||
tree-sitter
|
tree-sitter
|
||||||
unzip
|
|
||||||
which
|
which
|
||||||
writers
|
writers
|
||||||
writeShellScript
|
writeShellScript
|
||||||
|
|
|
@ -1,3 +0,0 @@
|
||||||
inherited: false
|
|
||||||
owners:
|
|
||||||
- v
|
|
|
@ -1,7 +0,0 @@
|
||||||
{ ... }:
|
|
||||||
|
|
||||||
{
|
|
||||||
whitby = [
|
|
||||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKPY9bqtJ1AV+3/2DId2/p1jg4FQi1EHvEkVrfNdfhwq v@february"
|
|
||||||
];
|
|
||||||
}
|
|
|
@ -50,7 +50,6 @@ digraph tvl {
|
||||||
seven [href="https://open.spotify.com/user/so7"];
|
seven [href="https://open.spotify.com/user/so7"];
|
||||||
spacekookie [href="https://spacekookie.de/"];
|
spacekookie [href="https://spacekookie.de/"];
|
||||||
tazjin [href="https://tazj.in/"];
|
tazjin [href="https://tazj.in/"];
|
||||||
V [href="https://anomalous.eu/"];
|
|
||||||
wpcarro [href="https://wpcarro.dev/"];
|
wpcarro [href="https://wpcarro.dev/"];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -143,7 +142,6 @@ digraph tvl {
|
||||||
afra -> unspecific;
|
afra -> unspecific;
|
||||||
nikky -> afra;
|
nikky -> afra;
|
||||||
spacekookie -> qyliss;
|
spacekookie -> qyliss;
|
||||||
V -> unspecific;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// secondary edges (how are they connected otherwise?)
|
// secondary edges (how are they connected otherwise?)
|
||||||
|
|
Loading…
Reference in a new issue