diff options
-rw-r--r-- | machines/vbox.nix | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/machines/vbox.nix b/machines/vbox.nix index f7ffd49..a14af19 100644 --- a/machines/vbox.nix +++ b/machines/vbox.nix @@ -28,6 +28,7 @@ in { fileSystems."${apps.icingaweb2.configDir}" = mkIf apps.icingaweb2.enable 1; fileSystems."${apps.mysqlbackup.dumpDir}" = mkIf (apps.mysqlbackup.servers != {}) 10; fileSystems."${apps.nginx.stateDir}" = mkIf (apps.nginx.conf.http.servers != {}) 1; + fileSystems."/jenkins" = mkIf (apps.jenkins != {}) 15; fileSystems."/mariadb" = mkIf apps.mariadb.enable 30; fileSystems."/postgresql" = mkIf (apps.postgresql != {}) 2; fileSystems."/tmp" = 1; |