Skip to content

Commit

Permalink
fix(docs): stale nixpkgs version references
Browse files Browse the repository at this point in the history
  • Loading branch information
dpc committed Feb 8, 2024
1 parent db74cf9 commit 2dbc4e3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/building-new-project.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ index a96aa14..25ce16f 100644

- outputs = { self, nixpkgs }: {
+ inputs = {
+ nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.05";
+ nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.11";
+
+ flakebox = {
+ url = "github:rustshop/flakebox";
Expand Down Expand Up @@ -131,7 +131,7 @@ index a96aa14..bce12c5 100644

- outputs = { self, nixpkgs }: {
+ inputs = {
+ nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.05";
+ nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.11";

- packages.x86_64-linux.hello = nixpkgs.legacyPackages.x86_64-linux.hello;
-
Expand Down Expand Up @@ -169,7 +169,7 @@ Since that's a bit handful, let me paste the whole content:
description = "A very basic flake";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.05";
nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.11";
flakebox = {
url = "github:rustshop/flakebox";
Expand Down Expand Up @@ -691,7 +691,7 @@ index a65ba7a..f4c64d7 100644
--- a/flake.nix
+++ b/flake.nix
@@ -5,7 +5,7 @@
nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.05";
nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.11";
flakebox = {
- url = "github:rustshop/flakebox";
Expand Down

0 comments on commit 2dbc4e3

Please sign in to comment.