Revert "Remove nixpkgs-2411"

This reverts commit 631b1ffa66.
This commit is contained in:
Oliver Davies 2025-04-23 15:48:15 +01:00
parent 915ff5fbee
commit 9c5e258a9d
4 changed files with 23 additions and 1 deletions
flake.lockflake.nix
modules/home-manager/cli
overlays

17
flake.lock generated
View file

@ -194,6 +194,22 @@
"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": {
"locked": {
"lastModified": 1745310023,
@ -286,6 +302,7 @@
"nixos-hardware": "nixos-hardware",
"nixos-wsl": "nixos-wsl",
"nixpkgs": "nixpkgs_3",
"nixpkgs-2411": "nixpkgs-2411",
"nixpkgs-master": "nixpkgs-master",
"nur": "nur"
}

View file

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

View file

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

View file

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