Skip to content

Commit

Permalink
Merge pull request #86 from generative-engineering/24.11
Browse files Browse the repository at this point in the history
🆕 Target 24.11 too, now that it's out and non-beta
  • Loading branch information
zimbatm authored Dec 5, 2024
2 parents bccad7f + 8fab145 commit 8fdb877
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 6 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/nix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ jobs:
channel:
- nixos-unstable
- nixos-24.05
- nixos-24.11
system:
- aarch64-linux
- x86_64-linux
Expand Down Expand Up @@ -65,6 +66,7 @@ jobs:
channel:
- nixos-unstable
- nixos-24.05
- nixos-24.11
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down
1 change: 1 addition & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,4 @@ build:
IMAGE_TAG: latest
- NIXPKGS_CHANNEL:
- nixos-24.05
- nixos-24.11
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ nixpkgs channel describes.
| Channel | Image Tag | Description |
| --- | --- | --- |
| 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 |

## List of images
Expand Down
4 changes: 2 additions & 2 deletions images/devcontainer/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
, gnutar
, gzip
, iana-etc
, iproute
, iproute2
, less
, lib
, nix
Expand Down Expand Up @@ -61,7 +61,7 @@ let
(gcc-unwrapped // {
outputs = builtins.filter (x: x != "libgcc") gcc-unwrapped.outputs;
})
iproute
iproute2
];
};

Expand Down
4 changes: 2 additions & 2 deletions images/nix-flakes/default.nix
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{ docker-nixpkgs
, nixFlakes
, nixVersions
, writeTextFile
, extraContents ? [ ]
}:
docker-nixpkgs.nix.override {
nix = nixFlakes;
nix = nixVersions.stable;
extraContents = [
(writeTextFile {
name = "nix.conf";
Expand Down
3 changes: 1 addition & 2 deletions images/nix-unstable/default.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
{ docker-nixpkgs
, pkgs
, nixUnstable
}:
docker-nixpkgs.nix.override {
nix = pkgs.nixVersions.latest or pkgs.nixUnstable;
nix = pkgs.nixVersions.latest;
}

0 comments on commit 8fdb877

Please sign in to comment.