https://github.com/5aaee9/coder-image
Personal coder workspace image
https://github.com/5aaee9/coder-image
Last synced: 2 months ago
JSON representation
Personal coder workspace image
- Host: GitHub
- URL: https://github.com/5aaee9/coder-image
- Owner: 5aaee9
- License: unlicense
- Created: 2023-05-11T06:55:31.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-07-07T03:40:50.000Z (almost 3 years ago)
- Last Synced: 2025-03-15T00:12:35.613Z (over 1 year ago)
- Language: Nix
- Homepage:
- Size: 63.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# coder-image
[](https://github.com/5aaee9/coder-image/actions/workflows/build.yaml)
Personal workspace image using in [coder](https://coder.com/)

## Setup
### Container
Update container image to `ghcr.io/5aaee9/coder-image:main`
### Nix Daemon
Update startup script in coder main agent resource
```
resource "coder_agent" "main" {
os = "linux"
arch = "amd64"
startup_script_timeout = 180
startup_script = <<-EOT
sudo nix-daemon &>/tmp/nix.log &
nixld code-server --auth none --port 13337 >/tmp/code-server.log 2>&1 &
EOT
}
```