Compare commits

..

No commits in common. "5eb34861e688926290740fc4477954102132b1b6" and "8e99e8a719691e5e85af6d8d1e4b2faabdb9b26a" have entirely different histories.

3 changed files with 0 additions and 21 deletions

View file

@ -26,7 +26,6 @@
discord
signal-desktop
jellyfin-media-player
thunderbird
obs-studio
pavucontrol
vscode-fhs

View file

@ -2,6 +2,5 @@
imports = [
./restic.nix
./gotify-desktop.nix
./hydroxide.nix
];
}

View file

@ -1,19 +0,0 @@
{pkgs, ...}: {
environment.systemPackages = [pkgs.hydroxide];
networking.firewall.allowedTCPPorts = [1025 1143];
systemd.services.hydroxide = {
enable = true;
wantedBy = [
"multi-user.target"
];
description = "A third-party, open-source ProtonMail bridge";
serviceConfig = {
User = "notoh";
ExecStart = "${pkgs.hydroxide}/bin/hydroxide -disable-carddav serve";
Restart = "always";
RestartSec = 30;
};
};
}