From 298c7f5a72b97e327c4a5ff069a09b4167953eff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Sun, 16 Jul 2023 08:33:21 +0100 Subject: [PATCH] docs: update supported nixos releases (#195) --- README.md | 1 + docs/faq.md | 4 ++-- docs/getting_started.md | 1 + 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index fa3da0c..f1a6908 100644 --- a/README.md +++ b/README.md @@ -19,6 +19,7 @@ example to deploy a GitHub Action runner on Hetzner: inputs = { srvos.url = "github:numtide/srvos"; # Use the version of nixpkgs that has been tested to work with SrvOS + # Alternativly we also support the latest nixos release and unstable nixpkgs.follows = "srvos/nixpkgs"; }; outputs = { self, nixpkgs, srvos }: { diff --git a/docs/faq.md b/docs/faq.md index 58699b8..a866852 100644 --- a/docs/faq.md +++ b/docs/faq.md @@ -2,7 +2,7 @@ Some questions and answers that haven't been integrated in the documentation yet ## What version of NixOS should I use? -SrvOS is currently only tested against `nixos-unstable`. SrvOS itself is automatically updated and tested against the latest version of that channel once a week. +SrvOS is currently tested against `nixos-unstable` and the latest NixOS release. SrvOS itself is automatically updated and tested against the latest version of that channel once a week. If you want to make sure to use a tested version, use the "follows" mechanims of Nix flakes to pull the same version as the one of SrvOS: @@ -12,4 +12,4 @@ If you want to make sure to use a tested version, use the "follows" mechanims of # Use the version of nixpkgs that has been tested to work with SrvOS inputs.nixpkgs.follows = "srvos/nixpkgs"; } -``` \ No newline at end of file +``` diff --git a/docs/getting_started.md b/docs/getting_started.md index 9f8c7be..0e3955e 100644 --- a/docs/getting_started.md +++ b/docs/getting_started.md @@ -23,6 +23,7 @@ Combining all of those together, here is how your `flake.nix` might look like, t inputs = { srvos.url = "github:numtide/srvos"; # Use the version of nixpkgs that has been tested to work with SrvOS + # Alternativly we also support the latest nixos release and unstable nixpkgs.follows = "srvos/nixpkgs"; }; outputs = { self, nixpkgs, srvos }: {