From 50eff31327e50acb417343123277edd1744ca4ca Mon Sep 17 00:00:00 2001 From: Henry-Hiles Date: Sat, 22 Mar 2025 21:34:00 -0400 Subject: [PATCH] Remove un-needed inputs.nixpkgs --- flake.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index 14b6e38..f2f73f5 100755 --- a/flake.nix +++ b/flake.nix @@ -27,11 +27,11 @@ outputs = inputs: let lib = inputs.nixpkgs.lib; dirUtils = { - opt = inputs.nixpkgs.lib.optionals; + opt = lib.optionals; dirFiles = type: dir: lib.filter (lib.hasSuffix type) (lib.filesystem.listFilesRecursive dir); }; system = hostname: isDesktop: - inputs.nixpkgs.lib.nixosSystem { + lib.nixosSystem { system = "x86_64-linux"; specialArgs = { inherit inputs isDesktop dirUtils;