Remove nixpkgs-2411

This commit is contained in:
Oliver Davies 2025-04-23 14:28:57 +01:00
parent 520f821f36
commit 631b1ffa66
4 changed files with 1 additions and 23 deletions

17
flake.lock generated
View file

@ -194,22 +194,6 @@
"type": "github" "type": "github"
} }
}, },
"nixpkgs-2411": {
"locked": {
"lastModified": 1744440957,
"narHash": "sha256-FHlSkNqFmPxPJvy+6fNLaNeWnF1lZSgqVCl/eWaJRc4=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "26d499fc9f1d567283d5d56fcf367edd815dba1d",
"type": "github"
},
"original": {
"owner": "nixos",
"ref": "nixos-24.11",
"repo": "nixpkgs",
"type": "github"
}
},
"nixpkgs-master": { "nixpkgs-master": {
"locked": { "locked": {
"lastModified": 1745310023, "lastModified": 1745310023,
@ -302,7 +286,6 @@
"nixos-hardware": "nixos-hardware", "nixos-hardware": "nixos-hardware",
"nixos-wsl": "nixos-wsl", "nixos-wsl": "nixos-wsl",
"nixpkgs": "nixpkgs_3", "nixpkgs": "nixpkgs_3",
"nixpkgs-2411": "nixpkgs-2411",
"nixpkgs-master": "nixpkgs-master", "nixpkgs-master": "nixpkgs-master",
"nur": "nur" "nur": "nur"
} }

View file

@ -13,7 +13,6 @@
nixos-hardware.url = "github:NixOS/nixos-hardware/master"; nixos-hardware.url = "github:NixOS/nixos-hardware/master";
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
nixpkgs-2411.url = "github:nixos/nixpkgs/nixos-24.11";
nixpkgs-master.url = "github:nixos/nixpkgs/master"; nixpkgs-master.url = "github:nixos/nixpkgs/master";
nixos-wsl.url = "github:nix-community/NixOS-WSL/main"; nixos-wsl.url = "github:nix-community/NixOS-WSL/main";

View file

@ -168,7 +168,7 @@ in
}; };
home = { home = {
packages = with pkgs; [ nixpkgs-2411.git-instafix ]; packages = with pkgs; [ git-instafix ];
sessionVariables = { sessionVariables = {
GIT_INSTAFIX_UPSTREAM = "origin/main"; GIT_INSTAFIX_UPSTREAM = "origin/main";

View file

@ -14,9 +14,5 @@
}; };
stable-packages = final: _prev: { stable-packages = final: _prev: {
nixpkgs-2411 = import inputs.nixpkgs-2411 {
config.allowUnfree = true;
system = final.system;
};
}; };
} }