summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorLeonardo Santiago <[email protected]>2024-11-28 16:45:29 -0300
committerLeonardo Santiago <[email protected]>2024-11-28 16:45:58 -0300
commitb85a20a6430f7058a6d3900c93a25a8051744832 (patch)
tree28283c44b1102b2fb8a477e5a2ece4ed6c29130f /modules
parentbbdf072b349685d808f9c261ce702f100e939706 (diff)
parentae152ff9b86996b1e020c4dcf21a5c279a55e663 (diff)
Merge branch 'master' of ssh://ssh.santi.net.br:/server/git-repos/nixos
Diffstat (limited to 'modules')
-rw-r--r--modules/web-services.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/web-services.nix b/modules/web-services.nix
index 9f3f131..e08503a 100644
--- a/modules/web-services.nix
+++ b/modules/web-services.nix
@@ -14,7 +14,7 @@
};
};
systemd.tmpfiles.rules = [
- "d ${git-repo-path} 0755 git users -"
+ "d ${git-repo-path} 0755 git users"
];
services.cgit.santi = let
org2html = pkgs.writeShellScript "org2md" ''
@@ -98,7 +98,7 @@
certs.${cfg.blog.url}.email = "[email protected]";
};
systemd.tmpfiles.rules = [
- "d ${blog-public-path} 0755 git users -"
+ "d ${blog-public-path} 0755 git users"
];
systemd.services."blog-prepare-git-repo" = {
wantedBy = [ "multi-user.target" ];