-
Notifications
You must be signed in to change notification settings - Fork 0
fix: remove EnvironmentFile from paperclip service #1344
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -38,7 +38,6 @@ lib.mkIf host.isKyber { | |
| "HOME=${homeDir}" | ||
| "PATH=${homeDir}/.local/bin:${homeDir}/.bun/bin:${homeDir}/.nix-profile/bin:${homeDir}/.local/share/pnpm:${homeDir}/.local/share/fnm/current/bin:${homeDir}/.npm-global/bin:/usr/local/bin:/usr/bin:/bin" | ||
| ]; | ||
| EnvironmentFile = "${instanceDir}/.env"; | ||
| WorkingDirectory = "${homeDir}/.paperclip"; | ||
| StandardOutput = "append:/tmp/paperclip/paperclip.log"; | ||
| StandardError = "append:/tmp/paperclip/paperclip.log"; | ||
|
Comment on lines
41
to
43
|
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Removing the
EnvironmentFilereference makes theinstanceDirvariable (defined on line 10) unused within this module. To maintain code cleanliness and avoid confusion, consider removing theinstanceDirdefinition as well.