summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorSeth Flynn <[email protected]>2025-03-30 21:38:57 -0400
committerSeth Flynn <[email protected]>2025-03-30 22:08:05 -0400
commitb75b85d4a7130ee051004c187c0a5af00f449e6e (patch)
treed7904529faa108f7b68b7fb05097cdebb3bff635 /flake.nix
parentedbe9b7d259b95b48eae8b4f4853b1e5ad6ab537 (diff)
refactor(nix): nix-filter -> lib.fileset
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix7
1 files changed, 2 insertions, 5 deletions
diff --git a/flake.nix b/flake.nix
index 202931b..369665c 100644
--- a/flake.nix
+++ b/flake.nix
@@ -4,8 +4,6 @@
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
- nix-filter.url = "github:numtide/nix-filter";
-
# Inputs below this are optional
# `inputs.treefmt-nix.follows = ""`
@@ -19,7 +17,6 @@
{
self,
nixpkgs,
- nix-filter,
treefmt-nix,
}:
let
@@ -105,11 +102,11 @@
pkgs = nixpkgsFor.${system};
packages' = self.packages.${system};
- staticWith = pkgs.callPackage ./nix/static.nix { inherit nix-filter self; };
+ staticWith = pkgs.callPackage ./nix/static.nix { inherit self; };
containerize = pkgs.callPackage ./nix/containerize.nix { };
in
{
- nixpkgs-tracker-bot = pkgs.callPackage ./nix/package.nix { inherit nix-filter self; };
+ nixpkgs-tracker-bot = pkgs.callPackage ./nix/package.nix { inherit self; };
default = packages'.nixpkgs-tracker-bot;