diff options
author | Griffin Smith <grfn@gws.fyi> | 2021-04-11T21·53-0400 |
---|---|---|
committer | glittershark <grfn@gws.fyi> | 2021-04-12T14·45+0000 |
commit | 6266c5d32f9ff651fcfc3a4cc0c68e89da56ca65 (patch) | |
tree | 5be3967585787c4456e17cb29423770217fdcede /ops | |
parent | 968effb5dc1a4617a0dceaffc70e986abe300c6e (diff) |
refactor(users/glittershark): Rename to grfn r/2485
Rename my //users directory and all places that refer to glittershark to grfn, including nix references and documentation. This may require some extra attention inside of gerrit's database after it lands to allow me to actually push things. Change-Id: I4728b7ec2c60024392c1c1fa6e0d4a59b3e266fa Reviewed-on: https://cl.tvl.fyi/c/depot/+/2933 Tested-by: BuildkiteCI Reviewed-by: tazjin <mail@tazj.in> Reviewed-by: lukegb <lukegb@tvl.fyi> Reviewed-by: glittershark <grfn@gws.fyi>
Diffstat (limited to 'ops')
-rw-r--r-- | ops/machines/all-systems.nix | 2 | ||||
-rw-r--r-- | ops/machines/whitby/default.nix | 6 | ||||
-rw-r--r-- | ops/modules/www/wigglydonke.rs.nix | 2 | ||||
-rw-r--r-- | ops/users/default.nix | 2 |
4 files changed, 6 insertions, 6 deletions
diff --git a/ops/machines/all-systems.nix b/ops/machines/all-systems.nix index 493d39e06b73..4b1d1457aa49 100644 --- a/ops/machines/all-systems.nix +++ b/ops/machines/all-systems.nix @@ -10,7 +10,7 @@ tverskoy ]) ++ -(with depot.users.glittershark.system.system; [ +(with depot.users.grfn.system.system; [ chupacabra yeren ]) diff --git a/ops/machines/whitby/default.nix b/ops/machines/whitby/default.nix index eb5ee4ed6d12..eb93aef69dac 100644 --- a/ops/machines/whitby/default.nix +++ b/ops/machines/whitby/default.nix @@ -54,7 +54,7 @@ in lib.fix(self: { authorizedKeys = depot.users.tazjin.keys.all ++ depot.users.lukegb.keys.all - ++ [ depot.users.glittershark.keys.whitby ]; + ++ [ depot.users.grfn.keys.whitby ]; hostKeys = [ /etc/secrets/initrd_host_ed25519_key @@ -172,7 +172,7 @@ in lib.fix(self: { keys = with depot.users; tazjin.keys.all ++ lukegb.keys.all - ++ [ glittershark.keys.whitby ] + ++ [ grfn.keys.whitby ] ++ sterni.keys.all ; }; @@ -382,7 +382,7 @@ in lib.fix(self: { isNormalUser = true; extraGroups = [ "git" "wheel" ]; openssh.authorizedKeys.keys = [ - depot.users.glittershark.keys.whitby + depot.users.grfn.keys.whitby ]; }; diff --git a/ops/modules/www/wigglydonke.rs.nix b/ops/modules/www/wigglydonke.rs.nix index 0bc67898c633..4643b343174a 100644 --- a/ops/modules/www/wigglydonke.rs.nix +++ b/ops/modules/www/wigglydonke.rs.nix @@ -9,7 +9,7 @@ services.nginx.virtualHosts."wigglydonke.rs" = { enableACME = true; forceSSL = true; - root = "${depot.depotPath}/users/glittershark/wigglydonke.rs"; + root = "${depot.depotPath}/users/grfn/wigglydonke.rs"; }; }; } diff --git a/ops/users/default.nix b/ops/users/default.nix index 7a59128c657d..cb53cc0a355c 100644 --- a/ops/users/default.nix +++ b/ops/users/default.nix @@ -47,7 +47,7 @@ password = "{ARGON2}$argon2id$v=19$m=65536,t=2,p=1$TrezbwIY5TKLnJiii0wafQ$K0S2p9I8tiqP907nkgoK6IbG9ia4IuDiylTcIs5pesw"; } { - username = "glittershark"; + username = "grfn"; email = "grfn@gws.fyi"; password = "{SSHA}i7PSAsXwJT3jjmmvU77aar/tU/YPDCEO"; } |