diff options
author | Simon Parri <simonparri@ganzeria.com> | 2025-09-15 17:06:28 -0500 |
---|---|---|
committer | Simon Parri <simonparri@ganzeria.com> | 2025-09-15 17:07:37 -0500 |
commit | 4b5679be9190371141c56ee7875ce47c86fb487f (patch) | |
tree | 574e7a37665175e23be78384c2a401669f401bda /hosts | |
parent | 33e329430bdcc7ba051b3ee75f032aa604259ec9 (diff) | |
download | nixos-config-4b5679be9190371141c56ee7875ce47c86fb487f.tar.gz nixos-config-4b5679be9190371141c56ee7875ce47c86fb487f.zip |
hosts/tomato: Enable basic Apache configuration
Diffstat (limited to 'hosts')
-rw-r--r-- | hosts/tomato/default.nix | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/hosts/tomato/default.nix b/hosts/tomato/default.nix index 0e7d146..d80afa2 100644 --- a/hosts/tomato/default.nix +++ b/hosts/tomato/default.nix @@ -30,6 +30,11 @@ this.buildMachines = ["pinto"]; + this.apache = { + enable = true; + vhosts = ["local"]; + }; + this.hosts = { lan.home = true; mine = true; |