| CARVIEW |
Select Language
HTTP/2 301
server: GitHub.com
content-type: text/html
location: https://nixos.github.io/amis/
x-github-request-id: 6EDA:141D69:372B4:3D80E:696A354D
accept-ranges: bytes
age: 0
date: Fri, 16 Jan 2026 12:55:42 GMT
via: 1.1 varnish
x-served-by: cache-bom-vanm7210035-BOM
x-cache: MISS
x-cache-hits: 0
x-timer: S1768568142.174284,VS0,VE225
vary: Accept-Encoding
x-fastly-request-id: 12e028bb24699a9457e5ade6bd204425e4786460
content-length: 162
HTTP/2 200
server: GitHub.com
content-type: text/html; charset=utf-8
last-modified: Sun, 11 Jan 2026 00:31:33 GMT
access-control-allow-origin: *
etag: W/"6962ef65-28a5"
expires: Fri, 16 Jan 2026 13:05:42 GMT
cache-control: max-age=600
content-encoding: gzip
x-proxy-cache: MISS
x-github-request-id: 0F2D:2EF093:38472:3E9F9:696A354D
accept-ranges: bytes
age: 0
date: Fri, 16 Jan 2026 12:55:42 GMT
via: 1.1 varnish
x-served-by: cache-bom-vanm7210035-BOM
x-cache: MISS
x-cache-hits: 0
x-timer: S1768568142.414552,VS0,VE236
vary: Accept-Encoding
x-fastly-request-id: 55696dea55b9ad4160643008a456986e19311f47
content-length: 2636
NixOS Amazon Images / AMIs
Amazon Images / AMIs
NixOS can be deployed to Amazon EC2 using our official AMI. We publish AMIs to all AWS regions for both `x86_64` and `arm64` on a weekly basis.
We deprecate and garbage collecting images older than 90 days. This is why we suggest using a terraform data source or the AWS API to query for the latest AMI.
NixOS images are published under AWS Account ID
Terraform / OpenTofu
You can use terraform to query for the latest image
provider "aws" {
region = "eu-central-1"
}
data "aws_ami" "nixos_arm64" {
owners = ["_OWNER_ID_"]
most_recent = true
filter {
name = "name"
values = ["nixos/24.11*"]
}
filter {
name = "architecture"
values = ["arm64"]
}
}
resource "aws_instance" "nixos_arm64" {
ami = data.aws_ami.nixos_arm64.id
instance_type = "t4g.nano"
}
AWS CLI
aws ec2 describe-images --owners _OWNER_ID_ --filter 'Name=name,Values=nixos/24.11*' 'Name=architecture,Values=arm64' --query 'sort_by(Images, &CreationDate)'
AMI table
Here are the latest NixOS images available in the Amazon cloud.
| Creation date | Image ID | |||
|---|---|---|---|---|