flake.nix: update nix-darwin to 25.11, remove nixpkgs_25_11
Flake lock file updates: • Updated input 'darwin': 'github:LnL7/nix-darwin/000eadb231812ad6ea6aebd7526974aaf4e79355' (2025-10-03) → 'github:LnL7/nix-darwin/e95de00a471d07435e0527ff4db092c84998698e' (2025-11-26) • Updated input 'darwin/nixpkgs': follows 'nixpkgs_25_05' → follows 'nixpkgs' • Removed input 'nixpkgs_25_05'
Martin Weinelt committed
Dec 4, 2025 at 17:28 UTC
5ebfd5ad9e17e1db1743935c04b0671a1c72dd9c
2 files changed
+7
-25
flake.lock
+5
-22
@@ -92,20 +92,20 @@
92
"darwin_2": {
93
"inputs": {
94
"nixpkgs": [
95
- "nixpkgs_25_05"
95
+ "nixpkgs"
96
]
97
},
98
"locked": {
99
- "lastModified": 1759509947,
100
- "narHash": "sha256-4XifSIHfpJKcCf5bZZRhj8C4aCpjNBaE3kXr02s4rHU=",
99
+ "lastModified": 1764161084,
100
+ "narHash": "sha256-HN84sByg9FhJnojkGGDSrcjcbeioFWoNXfuyYfJ1kBE=",
101
"owner": "LnL7",
102
"repo": "nix-darwin",
103
- "rev": "000eadb231812ad6ea6aebd7526974aaf4e79355",
103
+ "rev": "e95de00a471d07435e0527ff4db092c84998698e",
104
"type": "github"
105
},
106
"original": {
107
"owner": "LnL7",
108
- "ref": "nix-darwin-25.05",
108
+ "ref": "nix-darwin-25.11",
109
"repo": "nix-darwin",
110
"type": "github"
111
}
@@ -462,22 +462,6 @@
462
"type": "github"
463
}
464
},
465
- "nixpkgs_25_05": {
466
- "locked": {
467
- "lastModified": 1764115444,
468
- "narHash": "sha256-AcwR4Lt4nZCOky+73iKF9iBf3RmabvNcK8HuExLCahg=",
469
- "owner": "NixOS",
470
- "repo": "nixpkgs",
471
- "rev": "9243f3e5dc86ed8c61c09da1fa0493a87b150621",
472
- "type": "github"
473
- },
474
- "original": {
475
- "owner": "NixOS",
476
- "ref": "nixos-25.05-small",
477
- "repo": "nixpkgs",
478
- "type": "github"
479
- }
480
- },
465
"rfc39": {
466
"inputs": {
467
"nixpkgs": [
@@ -513,7 +497,6 @@
497
"nixpkgs": "nixpkgs",
498
"nixpkgs-swh": "nixpkgs-swh",
499
"nixpkgs-unstable": "nixpkgs-unstable",
516
- "nixpkgs_25_05": "nixpkgs_25_05",
500
"rfc39": "rfc39",
501
"simple-nixos-mailserver": "simple-nixos-mailserver",
502
"sops-nix": "sops-nix",
flake.nix
+2
-3
@@ -28,7 +28,6 @@
28
};
29
30
nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.11-small";
31
- nixpkgs_25_05.url = "github:NixOS/nixpkgs/nixos-25.05-small";
31
nixpkgs-unstable.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
32
33
flake-parts = {
@@ -37,8 +36,8 @@
36
};
37
38
darwin = {
40
- url = "github:LnL7/nix-darwin/nix-darwin-25.05";
41
- inputs.nixpkgs.follows = "nixpkgs_25_05";
39
+ url = "github:LnL7/nix-darwin/nix-darwin-25.11";
40
+ inputs.nixpkgs.follows = "nixpkgs";
41
};
42
43
flake-utils.url = "github:numtide/flake-utils";