From 54cbacb6eb9938bf1eaab7a7840fb527050c2af1 Mon Sep 17 00:00:00 2001 From: isabel Date: Fri, 14 Jun 2024 21:51:43 +0100 Subject: [PATCH] chore: remove flake utils --- flake.lock | 36 +----------------------------------- flake.nix | 3 +-- 2 files changed, 2 insertions(+), 37 deletions(-) diff --git a/flake.lock b/flake.lock index a21958d..191417d 100644 --- a/flake.lock +++ b/flake.lock @@ -67,41 +67,7 @@ "blobs": "blobs", "flake-compat": "flake-compat", "nixpkgs": "nixpkgs", - "nixpkgs-24_05": "nixpkgs-24_05", - "utils": "utils" - } - }, - "systems": { - "locked": { - "lastModified": 1681028828, - "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", - "owner": "nix-systems", - "repo": "default", - "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", - "type": "github" - }, - "original": { - "owner": "nix-systems", - "repo": "default", - "type": "github" - } - }, - "utils": { - "inputs": { - "systems": "systems" - }, - "locked": { - "lastModified": 1709126324, - "narHash": "sha256-q6EQdSeUZOG26WelxqkmR7kArjgWCdw5sfJVHPH/7j8=", - "owner": "numtide", - "repo": "flake-utils", - "rev": "d465f4819400de7c8d874d50b982301f28a84605", - "type": "github" - }, - "original": { - "owner": "numtide", - "repo": "flake-utils", - "type": "github" + "nixpkgs-24_05": "nixpkgs-24_05" } } }, diff --git a/flake.nix b/flake.nix index a090f9a..faa307a 100644 --- a/flake.nix +++ b/flake.nix @@ -6,7 +6,6 @@ url = "github:edolstra/flake-compat"; flake = false; }; - utils.url = "github:numtide/flake-utils"; nixpkgs.url = "flake:nixpkgs/nixos-unstable"; nixpkgs-24_05.url = "flake:nixpkgs/nixos-24.05"; blobs = { @@ -15,7 +14,7 @@ }; }; - outputs = { self, utils, blobs, nixpkgs, nixpkgs-24_05, ... }: let + outputs = { self, blobs, nixpkgs, nixpkgs-24_05, ... }: let lib = nixpkgs.lib; system = "x86_64-linux"; pkgs = nixpkgs.legacyPackages.${system};