Configuration for my NixOS based systems and Home Manager
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add WIP coder to odin

+11
+11
host-specific/odin/services.nix
··· 30 30 storageDriver = "overlay2"; 31 31 }; 32 32 }; 33 + 34 + services.coder = { 35 + enable = true; 36 + listenAddress = "0.0.0.0:3000"; 37 + environment.extra = { 38 + CODER_OIDC_ISSUER_URL = "https://id.ngp.computer"; 39 + CODER_OIDC_EMAIL_DOMAIN = "ngp.computer"; 40 + CODER_OIDC_CLIENT_ID = "test"; 41 + CODER_OIDC_CLIENT_SECRET = "testsecret"; 42 + }; 43 + }; 33 44 }