Upgrade to NixOS 23.11

Also see the release notes for more information:
https://nixos.org/manual/nixos/stable/release-notes#sec-release-23.11
This commit is contained in:
June 2023-12-05 17:33:49 +01:00
parent b030b10055
commit 8889db28a3
2 changed files with 5 additions and 24 deletions

View file

@ -38,27 +38,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1699351105, "lastModified": 1701641412,
"narHash": "sha256-jNgFflP+Z7PzQav2TtuLBGEXF9GsBq2s8aBH18vmldM=", "narHash": "sha256-8tIujWeoxRnkTjaQK4uzBxvhm0MxHilAi2VjlenQoBg=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "33e938c7823e47a787ad4f76003d14ff92ad96dd", "rev": "71bb3aaf2222f5ac691edb7de046d74c6cfe466b",
"type": "github"
},
"original": {
"owner": "nixos",
"ref": "nixos-23.05-small",
"repo": "nixpkgs",
"type": "github"
}
},
"nixpkgs-23-11": {
"locked": {
"lastModified": 1701374686,
"narHash": "sha256-xaJPtgvTuUGSPba8p3+ezCJjKnVij77ai8OE2bnTC0E=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "1bce6a1791a513af2727e5b668b3cd9ba76cb0bf",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -88,7 +72,6 @@
"inputs": { "inputs": {
"nixos-generators": "nixos-generators", "nixos-generators": "nixos-generators",
"nixpkgs": "nixpkgs", "nixpkgs": "nixpkgs",
"nixpkgs-23-11": "nixpkgs-23-11",
"nixpkgs-unstable": "nixpkgs-unstable" "nixpkgs-unstable": "nixpkgs-unstable"
} }
} }

View file

@ -5,8 +5,7 @@
# Use the NixOS small channels for nixpkgs. # Use the NixOS small channels for nixpkgs.
# https://nixos.org/manual/nixos/stable/#sec-upgrading # https://nixos.org/manual/nixos/stable/#sec-upgrading
# https://github.com/NixOS/nixpkgs # https://github.com/NixOS/nixpkgs
nixpkgs.url = "github:nixos/nixpkgs/nixos-23.05-small"; nixpkgs.url = "github:nixos/nixpkgs/nixos-23.11-small";
nixpkgs-23-11.url = "github:nixos/nixpkgs/nixos-23.11-small";
nixpkgs-unstable.url = "github:nixos/nixpkgs/nixos-unstable-small"; nixpkgs-unstable.url = "github:nixos/nixpkgs/nixos-unstable-small";
# Add nixos-generators as an input. # Add nixos-generators as an input.
@ -17,7 +16,7 @@
}; };
}; };
outputs = { nixpkgs, nixpkgs-23-11, nixpkgs-unstable, nixos-generators, ... }: outputs = { nixpkgs, nixpkgs-unstable, nixos-generators, ... }:
let let
pkgs-unstable = nixpkgs-unstable.legacyPackages."x86_64-linux"; pkgs-unstable = nixpkgs-unstable.legacyPackages."x86_64-linux";
# Shairport Sync 4.3.1 (with nqptp 1.2.4) with metadata, MQTT and AirPlay 2 support. # Shairport Sync 4.3.1 (with nqptp 1.2.4) with metadata, MQTT and AirPlay 2 support.
@ -66,7 +65,6 @@
nodeNixpkgs = { nodeNixpkgs = {
audio-hauptraum-kueche = nixpkgs-unstable.legacyPackages."x86_64-linux".extend shairportSync431ExtendedNixpkgsUnstableOverlay; audio-hauptraum-kueche = nixpkgs-unstable.legacyPackages."x86_64-linux".extend shairportSync431ExtendedNixpkgsUnstableOverlay;
audio-hauptraum-tafel = nixpkgs-unstable.legacyPackages."x86_64-linux".extend shairportSync431ExtendedNixpkgsUnstableOverlay; audio-hauptraum-tafel = nixpkgs-unstable.legacyPackages."x86_64-linux".extend shairportSync431ExtendedNixpkgsUnstableOverlay;
netbox = nixpkgs-23-11.legacyPackages."x86_64-linux";
}; };
nodeSpecialArgs = { nodeSpecialArgs = {
public-web-static = { inherit pkgs-unstable; }; public-web-static = { inherit pkgs-unstable; };