remove dead code with deadnix

This commit is contained in:
Noah Masur
2023-02-20 20:45:56 -05:00
parent cc84f1d37a
commit 450118d234
21 changed files with 29 additions and 29 deletions

View File

@ -3,14 +3,14 @@
inputs.mach-nix.url = "github:DavHau/mach-nix/3.5.0";
outputs = { self, nixpkgs, mach-nix }@inp:
outputs = { nixpkgs, mach-nix }:
let
supportedSystems = [ "x86_64-linux" "x86_64-darwin" "aarch64-darwin" ];
forAllSystems = f:
nixpkgs.lib.genAttrs supportedSystems
(system: f system (import nixpkgs { inherit system; }));
in rec {
defaultApp = forAllSystems (system: pkgs:
defaultApp = forAllSystems (system: _pkgs:
mach-nix.lib."${system}".mkPython {
requirements = builtins.readFile ./requirements.txt;
});