Skip to content

Commit

Permalink
♾️
Browse files Browse the repository at this point in the history
  • Loading branch information
Enzime committed Jan 7, 2024
1 parent af8f9c1 commit 6ef0f74
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
- Use `syncthing`
- Disabled Firefox Relay prompt
- Use garbage collection by default on all systems
- Use `enzime` as the default user on `echo`
- Removed `diff.age.textconv`
Expand Down
1 change: 1 addition & 0 deletions modules/firefox.nix
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@
"extensions.pocket.enabled" = false;
"browser.newtabpage.activity-stream.showSponsoredTopSites" = false;
"app.normandy.enabled" = false;
"signon.firefoxRelay.feature" = "disabled";

"browser.aboutConfig.showWarning" = false;

Expand Down
24 changes: 24 additions & 0 deletions modules/syncthing.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
nixosModule = { ... }: {
services.syncthing.enable = true;
services.syncthing.guiAddress = "0.0.0.0:8384";
services.syncthing.settings = {
devices.moto-g5-plus = {
addresses = [ "tcp://moto-g5-plus" ];
id = "SNFCA4P-6FNPUMD-BI62ZEI-MFRSQRP-OK6IMU2-ZN67HQH-UKPAN5I-OCTSHAU";
};
folders."/data/Backup/Signal" = {
id = "7y829-o47k9";
label = "Signal Backup";
type = "receiveonly";
devices = [ "moto-g5-plus" ];
versioning = {
type = "staggered";
fsPath = "old";
# Keep old versions for 14 days
params.maxAge = toString (14 * 24 * 60 * 60);
};
};
};
};
}

0 comments on commit 6ef0f74

Please sign in to comment.