summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorisabel <isabel@isabelroses.com>2024-06-14 21:51:43 +0100
committerisabel <isabel@isabelroses.com>2024-06-14 21:52:49 +0100
commit54cbacb6eb9938bf1eaab7a7840fb527050c2af1 (patch)
tree365c9e1e75873d7c478ee69b499a0a1d0c8ceff7
parent29916981e7b3b5782dc5085ad18490113f8ff63b (diff)
chore: remove flake utils
-rw-r--r--flake.lock36
-rw-r--r--flake.nix3
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};