1
0
Fork 0
dotfiles/system/nixos/atuin-sync.nix

31 lines
748 B
Nix
Raw Normal View History

2023-02-27 16:51:39 +00:00
{ pkgs, config, ... }:
{
users.users.atuin = {
group = "atuin";
isSystemUser = true;
};
users.groups.atuin = { };
systemd.services.atuin-sync = {
description = "atuin sync server";
wantedBy = [ "multi-user.target" ];
after = [ "network.target" "network-online.target" ];
wants = [ "network.target" "network-online.target" ];
serviceConfig = {
ExecStart = "${pkgs.atuin}/bin/atuin server start";
EnvironmentFile = [ config.age.secrets.atuin-environment.path ];
Restart = "on-failure";
User = "atuin";
Group = "atuin";
RuntimeDirectory = "atuin";
RuntimeDirectoryMode = "0700";
};
};
2023-02-27 17:00:44 +00:00
networking.firewall.interfaces."tailscale0".allowedTCPPorts = [ 8015 ];
2023-02-27 16:51:39 +00:00
}