summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJasper Ras <jaspert.ras@gmail.com>2025-02-06 22:20:48 +0000
committerJasper Ras <jaspert.ras@gmail.com>2025-02-06 22:20:48 +0000
commit3d5081b8ba0e31a152ea69458601597dce8ee2c8 (patch)
tree935515758de669b3ccbbd4d95b14b8d46c4d6304
parentf71051f47158f57091306e269352d7579522e426 (diff)
rm gitea
-rw-r--r--configuration/snorlax/gitea.nix25
1 files changed, 0 insertions, 25 deletions
diff --git a/configuration/snorlax/gitea.nix b/configuration/snorlax/gitea.nix
deleted file mode 100644
index 6ad46e0..0000000
--- a/configuration/snorlax/gitea.nix
+++ /dev/null
@@ -1,25 +0,0 @@
-{ ... }:
-{
- users.groups.git = {};
- users.users.git = {
- isSystemUser = true;
- group = "git";
- hashedPassword = "$6$Rc//lmBr5orYHn.0$M9y3Zj4zCe723r8hYGIhPC5kPv5SVGHjF1FsjrT9IIx7trxuNTLtLDQVL9lhmR5/7bFMUFEf0CMx9w7.vgXgY0";
- openssh.authorizedKeys.keyFiles = [
- ../../keys/id_tarrel.pub
- ../../keys/id_work.pub
- ];
- };
-
- services.gitea = {
- enable = true;
- appName = "JAP56 Git Server";
- group = "git";
- user = "git";
- settings.server = {
- DOMAIN = "snorlax";
- };
- };
-
- services.openssh.settings.AllowUsers = [ "git" ];
-}