diff --git a/.github/workflows/nix.yml b/.github/workflows/nix.yml index 1c5052c..d346994 100644 --- a/.github/workflows/nix.yml +++ b/.github/workflows/nix.yml @@ -16,9 +16,9 @@ jobs: matrix: channel: - nixos-unstable - - nixos-20.09 - nixos-21.05 - nixos-21.11 + - nixos-22.05 runs-on: ubuntu-20.04 steps: - uses: actions/checkout@v3 diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 8ef45cb..28b97e4 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -3,13 +3,13 @@ stages: build: stage: build - image: nixpkgs/nix:nixos-21.05 + image: nixpkgs/nix:nixos-21.11 script: nix-shell --run ./ci.sh parallel: matrix: - NIXPKGS_CHANNEL: nixos-unstable IMAGE_TAG: latest - NIXPKGS_CHANNEL: - - nixos-20.09 - nixos-21.05 - nixos-21.11 + - nixos-22.05 diff --git a/README.md b/README.md index badea39..a7c444c 100644 --- a/README.md +++ b/README.md @@ -40,9 +40,9 @@ nixpkgs channel describes. | Channel | Image Tag | Description | | --- | --- | --- | | nixos-unstable | latest | latest and greatest, major versions might change | +| nixos-22.05 | nixos-22.05 | only minor versions that include security updates | | nixos-21.11 | nixos-21.11 | only minor versions that include security updates | | nixos-21.05 | nixos-21.05 | only minor versions that include security updates | -| nixos-20.09 | nixos-20.09 | only minor versions that include security updates | ## List of images diff --git a/shell.nix b/shell.nix index 9f06818..9687749 100644 --- a/shell.nix +++ b/shell.nix @@ -1,5 +1,5 @@ let - nixpkgs = builtins.fetchTarball "channel:nixos-20.09"; + nixpkgs = builtins.fetchTarball "channel:nixos-22.05"; pkgs = import nixpkgs { config = { }; overlays = [ ]; }; in with pkgs;