diff options
author | Ismaël Bouya <ismael.bouya@normalesup.org> | 2019-10-24 00:35:49 +0200 |
---|---|---|
committer | Ismaël Bouya <ismael.bouya@normalesup.org> | 2019-10-24 00:35:49 +0200 |
commit | d2e703c560bc029c3d607058de2935bbf1cb0559 (patch) | |
tree | 9504d46a85fb159aa09ba449d667d1304d6f8159 /modules/private/websites/chloe | |
parent | b11f0e174bc8450657c358a395f27a830dcad801 (diff) | |
download | Nix-d2e703c560bc029c3d607058de2935bbf1cb0559.tar.gz Nix-d2e703c560bc029c3d607058de2935bbf1cb0559.tar.zst Nix-d2e703c560bc029c3d607058de2935bbf1cb0559.zip |
Rename backup module to duply_backup
Diffstat (limited to 'modules/private/websites/chloe')
-rw-r--r-- | modules/private/websites/chloe/integration.nix | 2 | ||||
-rw-r--r-- | modules/private/websites/chloe/production.nix | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/private/websites/chloe/integration.nix b/modules/private/websites/chloe/integration.nix index 75e25af..00c76a5 100644 --- a/modules/private/websites/chloe/integration.nix +++ b/modules/private/websites/chloe/integration.nix | |||
@@ -12,7 +12,7 @@ in { | |||
12 | options.myServices.websites.chloe.integration.enable = lib.mkEnableOption "enable Chloe's website in integration"; | 12 | options.myServices.websites.chloe.integration.enable = lib.mkEnableOption "enable Chloe's website in integration"; |
13 | 13 | ||
14 | config = lib.mkIf cfg.enable { | 14 | config = lib.mkIf cfg.enable { |
15 | services.backup.profiles.chloe_dev.rootDir = chloe.app.varDir; | 15 | services.duplyBackup.profiles.chloe_dev.rootDir = chloe.app.varDir; |
16 | secrets.keys = chloe.keys; | 16 | secrets.keys = chloe.keys; |
17 | systemd.services.phpfpm-chloe_dev.after = lib.mkAfter chloe.phpFpm.serviceDeps; | 17 | systemd.services.phpfpm-chloe_dev.after = lib.mkAfter chloe.phpFpm.serviceDeps; |
18 | systemd.services.phpfpm-chloe_dev.wants = chloe.phpFpm.serviceDeps; | 18 | systemd.services.phpfpm-chloe_dev.wants = chloe.phpFpm.serviceDeps; |
diff --git a/modules/private/websites/chloe/production.nix b/modules/private/websites/chloe/production.nix index 7c59806..0562de8 100644 --- a/modules/private/websites/chloe/production.nix +++ b/modules/private/websites/chloe/production.nix | |||
@@ -12,7 +12,7 @@ in { | |||
12 | options.myServices.websites.chloe.production.enable = lib.mkEnableOption "enable Chloe's website in production"; | 12 | options.myServices.websites.chloe.production.enable = lib.mkEnableOption "enable Chloe's website in production"; |
13 | 13 | ||
14 | config = lib.mkIf cfg.enable { | 14 | config = lib.mkIf cfg.enable { |
15 | services.backup.profiles.chloe_prod.rootDir = chloe.app.varDir; | 15 | services.duplyBackup.profiles.chloe_prod.rootDir = chloe.app.varDir; |
16 | secrets.keys = chloe.keys; | 16 | secrets.keys = chloe.keys; |
17 | services.webstats.sites = [ { name = "osteopathe-cc.fr"; } ]; | 17 | services.webstats.sites = [ { name = "osteopathe-cc.fr"; } ]; |
18 | 18 | ||