switch to nixos-unstable-small for django 5.1.1
All checks were successful
build nixos-runner / build (push) Successful in 10m18s

This commit is contained in:
Jeffrey C. Ollie 2024-09-09 18:01:47 -05:00
parent 7e92d763a7
commit 496876b445
Signed by: jeff
GPG key ID: 6F86035A6D97044E
2 changed files with 6 additions and 6 deletions

View file

@ -2,16 +2,16 @@
"nodes": { "nodes": {
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1725826545, "lastModified": 1725908325,
"narHash": "sha256-L64N1rpLlXdc94H+F6scnrbuEu+utC03cDDVvvJGOME=", "narHash": "sha256-od7N34SReLyovnXLBS6c41GSgQGnUpWByw57va1GIuI=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "f4c846aee8e1e29062aa8514d5e0ab270f4ec2f9", "rev": "58aa6d56f60d6245b7b6864bf342ef79caa8f9f4",
"type": "github" "type": "github"
}, },
"original": { "original": {
"id": "nixpkgs", "id": "nixpkgs",
"ref": "nixos-24.05", "ref": "nixos-unstable-small",
"type": "indirect" "type": "indirect"
} }
}, },

View file

@ -3,7 +3,7 @@
inputs = { inputs = {
nixpkgs = { nixpkgs = {
url = "nixpkgs/nixos-24.05"; url = "nixpkgs/nixos-unstable-small";
}; };
}; };
@ -15,7 +15,7 @@
pkgs = import nixpkgs { pkgs = import nixpkgs {
inherit system; inherit system;
}; };
py = pkgs.python3.override { py = pkgs.python312.override {
packageOverrides = final: prev: { packageOverrides = final: prev: {
django = prev.django_5; django = prev.django_5;
}; };