Fix infinite recursion
This commit is contained in:
@@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
outputs = { self, nixpkgs, handyhelper }: let
|
outputs = { self, nixpkgs, handyhelper }: let
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
handyhelper = handyhelper.packages.${system}.default;
|
handy_py = handyhelper.packages.${system}.default;
|
||||||
in {
|
in {
|
||||||
nixosConfigurations."staging" = nixpkgs.lib.nixosSystem {
|
nixosConfigurations."staging" = nixpkgs.lib.nixosSystem {
|
||||||
inherit system;
|
inherit system;
|
||||||
@@ -12,7 +12,7 @@
|
|||||||
../secrets/deploy.nix
|
../secrets/deploy.nix
|
||||||
({lib, config, pkgs, ...}: let
|
({lib, config, pkgs, ...}: let
|
||||||
py = pkgs.python3.withPackages (p: with p; [
|
py = pkgs.python3.withPackages (p: with p; [
|
||||||
handyhelper
|
handy_py
|
||||||
]);
|
]);
|
||||||
in {
|
in {
|
||||||
systemd.services.handyhelper = {
|
systemd.services.handyhelper = {
|
||||||
|
|||||||
Reference in New Issue
Block a user