Merge pull request #86 from generative-engineering/24.11

🆕 Target 24.11 too, now that it's out and non-beta
This commit is contained in:
Jonas Chevalier 2024-12-05 15:24:07 +01:00 committed by GitHub
commit 8fdb8770b3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 9 additions and 6 deletions

View file

@ -18,6 +18,7 @@ jobs:
channel: channel:
- nixos-unstable - nixos-unstable
- nixos-24.05 - nixos-24.05
- nixos-24.11
system: system:
- aarch64-linux - aarch64-linux
- x86_64-linux - x86_64-linux
@ -65,6 +66,7 @@ jobs:
channel: channel:
- nixos-unstable - nixos-unstable
- nixos-24.05 - nixos-24.05
- nixos-24.11
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4

View file

@ -11,3 +11,4 @@ build:
IMAGE_TAG: latest IMAGE_TAG: latest
- NIXPKGS_CHANNEL: - NIXPKGS_CHANNEL:
- nixos-24.05 - nixos-24.05
- nixos-24.11

View file

@ -40,6 +40,7 @@ nixpkgs channel describes.
| Channel | Image Tag | Description | | Channel | Image Tag | Description |
| --- | --- | --- | | --- | --- | --- |
| nixos-24.05 | nixos-24.05 | only minor versions that include security updates | | nixos-24.05 | nixos-24.05 | only minor versions that include security updates |
| nixos-24.11 | nixos-24.11 | only minor versions that include security updates |
| nixos-unstable | latest | latest and greatest, major versions might change | | nixos-unstable | latest | latest and greatest, major versions might change |
## List of images ## List of images

View file

@ -14,7 +14,7 @@
, gnutar , gnutar
, gzip , gzip
, iana-etc , iana-etc
, iproute , iproute2
, less , less
, lib , lib
, nix , nix
@ -61,7 +61,7 @@ let
(gcc-unwrapped // { (gcc-unwrapped // {
outputs = builtins.filter (x: x != "libgcc") gcc-unwrapped.outputs; outputs = builtins.filter (x: x != "libgcc") gcc-unwrapped.outputs;
}) })
iproute iproute2
]; ];
}; };

View file

@ -1,10 +1,10 @@
{ docker-nixpkgs { docker-nixpkgs
, nixFlakes , nixVersions
, writeTextFile , writeTextFile
, extraContents ? [ ] , extraContents ? [ ]
}: }:
docker-nixpkgs.nix.override { docker-nixpkgs.nix.override {
nix = nixFlakes; nix = nixVersions.stable;
extraContents = [ extraContents = [
(writeTextFile { (writeTextFile {
name = "nix.conf"; name = "nix.conf";

View file

@ -1,7 +1,6 @@
{ docker-nixpkgs { docker-nixpkgs
, pkgs , pkgs
, nixUnstable
}: }:
docker-nixpkgs.nix.override { docker-nixpkgs.nix.override {
nix = pkgs.nixVersions.latest or pkgs.nixUnstable; nix = pkgs.nixVersions.latest;
} }