Skip to content

Commit

Permalink
Fix SSHWIFTY_CONFIG logic error
Browse files Browse the repository at this point in the history
  • Loading branch information
diamondburned committed May 3, 2024
1 parent e29f68e commit aa37280
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/sshwifty/service.nix
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ in
wantedBy = [ "multi-user.target" ];
after = [ "network.target" ];
environment = {
SSHWIFTY_CONFIG = pkgs.writeText "sshwifty.json" self.config;
SSHWIFTY_CONFIG = pkgs.writeText "sshwifty.json" (builtins.toJSON self.config);
};
serviceConfig = {
ExecStart = "${lib.getExe self.package}";
Expand Down

0 comments on commit aa37280

Please sign in to comment.