summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to 'modules')
-rw-r--r--modules/home-manager/hostnet.nix40
1 files changed, 20 insertions, 20 deletions
diff --git a/modules/home-manager/hostnet.nix b/modules/home-manager/hostnet.nix
index b8f6418..a0c4af8 100644
--- a/modules/home-manager/hostnet.nix
+++ b/modules/home-manager/hostnet.nix
@@ -32,24 +32,24 @@ in {
};
};
- systemd.user.services.llama = {
- Unit.Description = "Hostnet Apache LLama";
- Service = {
- ExecStartPre = "${llamaDir}/se-vhosts.sh";
- ExecStart = "${httpd} -f ${llamaDir}/apache2.conf -DFOREGROUND";
- RestartSec = "2";
- Restart = "always";
- Environment = [
- "APACHE_RUN_DIR=${apache2Dir}"
- "APACHE_CONFDIR=${llamaDir}"
- "APACHE_RUN_USER=${config.home.username}"
- "APACHE_RUN_GROUP=${config.home.username}"
- "APACHE_PID_FILE=${homeDir}/.apache2.pid"
- "APACHE_RUN_FILE=${apache2Dir}/run"
- "APACHE_LOCK_FILE=${apache2Dir}/lock"
- "APACHE_LOG_FILE=${apache2Dir}/log"
- ];
- };
- Install.WantedBy = [ "default.target" ];
- };
+ # systemd.user.services.llama = {
+ # Unit.Description = "Hostnet Apache LLama";
+ # Service = {
+ # ExecStartPre = "${llamaDir}/se-vhosts.sh";
+ # ExecStart = "${httpd} -f ${llamaDir}/apache2.conf -DFOREGROUND";
+ # RestartSec = "2";
+ # Restart = "always";
+ # Environment = [
+ # "APACHE_RUN_DIR=${apache2Dir}"
+ # "APACHE_CONFDIR=${llamaDir}"
+ # "APACHE_RUN_USER=${config.home.username}"
+ # "APACHE_RUN_GROUP=${config.home.username}"
+ # "APACHE_PID_FILE=${homeDir}/.apache2.pid"
+ # "APACHE_RUN_FILE=${apache2Dir}/run"
+ # "APACHE_LOCK_FILE=${apache2Dir}/lock"
+ # "APACHE_LOG_FILE=${apache2Dir}/log"
+ # ];
+ # };
+ # Install.WantedBy = [ "default.target" ];
+ # };
}