From c4ee8c2db869040ed38e3e5776982a26830622d0 Mon Sep 17 00:00:00 2001 From: "D. Moonfire" Date: Tue, 7 Jan 2025 23:23:11 -0600 Subject: [PATCH] chore: updating to nixos-24.11 --- flake.lock | 17 +++++++++-------- flake.nix | 5 +---- 2 files changed, 10 insertions(+), 12 deletions(-) diff --git a/flake.lock b/flake.lock index 3854b9f..2441dab 100644 --- a/flake.lock +++ b/flake.lock @@ -351,16 +351,17 @@ }, "nixpkgs": { "locked": { - "lastModified": 1706098335, - "narHash": "sha256-r3dWjT8P9/Ah5m5ul4WqIWD8muj5F+/gbCdjiNVBKmU=", - "rev": "a77ab169a83a4175169d78684ddd2e54486ac651", - "revCount": 554858, - "type": "tarball", - "url": "https://api.flakehub.com/f/pinned/NixOS/nixpkgs/0.2311.554858%2Brev-a77ab169a83a4175169d78684ddd2e54486ac651/018d46f0-798f-71dc-a8c5-4689c46f7d12/source.tar.gz" + "lastModified": 1735563628, + "narHash": "sha256-OnSAY7XDSx7CtDoqNh8jwVwh4xNL/2HaJxGjryLWzX8=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "b134951a4c9f3c995fd7be05f3243f8ecd65d798", + "type": "github" }, "original": { - "type": "tarball", - "url": "https://flakehub.com/f/NixOS/nixpkgs/%2A.tar.gz" + "id": "nixpkgs", + "ref": "nixos-24.05", + "type": "indirect" } }, "root": { diff --git a/flake.nix b/flake.nix index f457240..3b6ea76 100644 --- a/flake.nix +++ b/flake.nix @@ -2,7 +2,7 @@ description = "Common setup for many projects that use a variety of languages."; inputs = { - nixpkgs.url = "https://flakehub.com/f/NixOS/nixpkgs/*.tar.gz"; + nixpkgs.url = "nixpkgs/nixos-24.05"; nixago.url = "github:jmgilman/nixago"; nixago.inputs.nixpkgs.follows = "nixpkgs"; @@ -121,8 +121,5 @@ shellHook = config.shellHook; }; }); - - # Formatting for the Nix files - formatter = forEachSupportedSystem ({ pkgs, ... }: pkgs.nixpkgs-fmt); }; }