From 321cb3679314ee59963d2424b061ddcf4c7b2457 Mon Sep 17 00:00:00 2001 From: "DavidCrompton1192@gmail.com" Date: Wed, 15 Mar 2023 22:29:43 -0400 Subject: [PATCH] Fix infinite recursion --- deploy/flake.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deploy/flake.nix b/deploy/flake.nix index cb5bc99..c9df031 100644 --- a/deploy/flake.nix +++ b/deploy/flake.nix @@ -4,7 +4,7 @@ outputs = { self, nixpkgs, handyhelper }: let system = "x86_64-linux"; - handyhelper = handyhelper.packages.${system}.default; + handy_py = handyhelper.packages.${system}.default; in { nixosConfigurations."staging" = nixpkgs.lib.nixosSystem { inherit system; @@ -12,7 +12,7 @@ ../secrets/deploy.nix ({lib, config, pkgs, ...}: let py = pkgs.python3.withPackages (p: with p; [ - handyhelper + handy_py ]); in { systemd.services.handyhelper = {