From a21a879db170c38c97958ce739912f022f4979cb Mon Sep 17 00:00:00 2001
From: jiriks74 <jiri@stefka.eu>
Date: Thu, 13 Mar 2025 22:24:07 +0100
Subject: [PATCH] fix: Drop `nixpkgs` input

---
 .forgejo/workflows/check.yml |  2 --
 flake.lock                   | 17 +++++++----------
 flake.nix                    |  6 +-----
 3 files changed, 8 insertions(+), 17 deletions(-)

diff --git a/.forgejo/workflows/check.yml b/.forgejo/workflows/check.yml
index 71287df..b2b232a 100644
--- a/.forgejo/workflows/check.yml
+++ b/.forgejo/workflows/check.yml
@@ -12,8 +12,6 @@ jobs:
       - uses: actions/checkout@v4
       - name: Install nix
         uses: https://github.com/DeterminateSystems/nix-installer-action@main
-      - name: Check Nix flake inputs
-        uses: https://github.com/DeterminateSystems/flake-checker-action@v4 # This action
       - name: Run nix fmt
         run: nix fmt -- --check .
 
diff --git a/flake.lock b/flake.lock
index 3298303..27b1748 100644
--- a/flake.lock
+++ b/flake.lock
@@ -20,18 +20,15 @@
     },
     "nixpkgs": {
       "locked": {
-        "lastModified": 1741246872,
-        "narHash": "sha256-Q6pMP4a9ed636qilcYX8XUguvKl/0/LGXhHcRI91p0U=",
-        "owner": "nixos",
-        "repo": "nixpkgs",
-        "rev": "10069ef4cf863633f57238f179a0297de84bd8d3",
-        "type": "github"
+        "lastModified": 1741010256,
+        "narHash": "sha256-WZNlK/KX7Sni0RyqLSqLPbK8k08Kq7H7RijPJbq9KHM=",
+        "path": "/nix/store/jk6xpbfh10gz6q5cqw8b2f7xk0pl7hkv-source",
+        "rev": "ba487dbc9d04e0634c64e3b1f0d25839a0a68246",
+        "type": "path"
       },
       "original": {
-        "owner": "nixos",
-        "ref": "nixos-unstable",
-        "repo": "nixpkgs",
-        "type": "github"
+        "id": "nixpkgs",
+        "type": "indirect"
       }
     },
     "root": {
diff --git a/flake.nix b/flake.nix
index 0021731..49c10dc 100644
--- a/flake.nix
+++ b/flake.nix
@@ -2,17 +2,13 @@
   description = "jiriks74's ZSH configuration";
 
   inputs = {
-    nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
     flake-utils.url = "github:numtide/flake-utils";
   };
 
   outputs = {
-    self,
     nixpkgs,
-    flake-utils,
     ...
-  } @ inputs: let
-    inherit (self) outputs;
+  }: let
     # Supported systems for your flake packages, shell, etc.
     systems = [
       "aarch64-linux"