From d36a1175524e68deaf7674d5a9e9c17ad790ca1a Mon Sep 17 00:00:00 2001 From: Michael Mandl Date: Sun, 7 Jul 2024 12:45:19 +0200 Subject: [PATCH] refactor: use strings instead of deprecated github urls --- flake.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/flake.nix b/flake.nix index 5d2b3d2..45ac0d3 100644 --- a/flake.nix +++ b/flake.nix @@ -1,12 +1,12 @@ { inputs = { - nixpkgs.url = github:NixOS/nixpkgs/nixos-24.05; - nixpkgs-unstable.url = github:NixOS/nixpkgs/nixos-unstable; + nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.05"; + nixpkgs-unstable.url = "github:NixOS/nixpkgs/nixos-unstable"; - nixos-hardware.url = github:mandlm/nixos-hardware/p330; + nixos-hardware.url = "github:mandlm/nixos-hardware/p330"; home-manager = { - url = github:nix-community/home-manager/release-24.05; + url = "github:nix-community/home-manager/release-24.05"; inputs.nixpkgs.follows = "nixpkgs"; }; };