fix: temporarily disable Transmission due to build issues
Some checks are pending
🏠 Home Lab CI/CD Pipeline / 🔍 Validate Configuration (push) Waiting to run
🏠 Home Lab CI/CD Pipeline / 🔨 Build Configurations (push) Blocked by required conditions
🏠 Home Lab CI/CD Pipeline / 🔒 Security Audit (push) Blocked by required conditions
🏠 Home Lab CI/CD Pipeline / 📚 Documentation & Modules (push) Blocked by required conditions
🏠 Home Lab CI/CD Pipeline / 🔄 Update Dependencies (push) Waiting to run
🏠 Home Lab CI/CD Pipeline / 🚀 Deploy Configuration (push) Blocked by required conditions
🏠 Home Lab CI/CD Pipeline / 📢 Notify Results (push) Blocked by required conditions
Some checks are pending
🏠 Home Lab CI/CD Pipeline / 🔍 Validate Configuration (push) Waiting to run
🏠 Home Lab CI/CD Pipeline / 🔨 Build Configurations (push) Blocked by required conditions
🏠 Home Lab CI/CD Pipeline / 🔒 Security Audit (push) Blocked by required conditions
🏠 Home Lab CI/CD Pipeline / 📚 Documentation & Modules (push) Blocked by required conditions
🏠 Home Lab CI/CD Pipeline / 🔄 Update Dependencies (push) Waiting to run
🏠 Home Lab CI/CD Pipeline / 🚀 Deploy Configuration (push) Blocked by required conditions
🏠 Home Lab CI/CD Pipeline / 📢 Notify Results (push) Blocked by required conditions
- Disable Transmission service due to compilation errors in unstable - Keep download directory creation for future re-enablement - Remove Transmission firewall port (9091) from sleeper-service - Focus on deploying NFS server functionality first This allows sleeper-service deployment to proceed with NFS services while Transmission package issues are resolved upstream.
This commit is contained in:
parent
de9c028072
commit
88638827c3
2 changed files with 9 additions and 2 deletions
|
@ -54,7 +54,7 @@
|
|||
programs.zsh.enable = true;
|
||||
|
||||
# Firewall configuration
|
||||
networking.firewall.allowedTCPPorts = [ 22 9091 ]; # SSH and Transmission RPC
|
||||
networking.firewall.allowedTCPPorts = [ 22 ]; # SSH only (Transmission disabled temporarily)
|
||||
|
||||
system.stateVersion = "25.05";
|
||||
}
|
|
@ -1,8 +1,10 @@
|
|||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
# Transmission temporarily disabled due to build issues
|
||||
# Will re-enable once package is stable
|
||||
services.transmission = {
|
||||
enable = true;
|
||||
enable = false;
|
||||
user = "geir";
|
||||
group = "users";
|
||||
settings.rpc-port = 9091;
|
||||
|
@ -14,4 +16,9 @@
|
|||
rpc-host-whitelist = "sleeper-service,localhost";
|
||||
};
|
||||
};
|
||||
|
||||
# Ensure downloads directory exists even without Transmission
|
||||
systemd.tmpfiles.rules = [
|
||||
"d /mnt/storage/downloads 0755 geir users -"
|
||||
];
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue