diff options
author | Leonardo Santiago <[email protected]> | 2024-11-28 16:45:29 -0300 |
---|---|---|
committer | Leonardo Santiago <[email protected]> | 2024-11-28 16:45:58 -0300 |
commit | b85a20a6430f7058a6d3900c93a25a8051744832 (patch) | |
tree | 28283c44b1102b2fb8a477e5a2ece4ed6c29130f | |
parent | bbdf072b349685d808f9c261ce702f100e939706 (diff) | |
parent | ae152ff9b86996b1e020c4dcf21a5c279a55e663 (diff) |
Merge branch 'master' of ssh://ssh.santi.net.br:/server/git-repos/nixos
-rw-r--r-- | flake.lock | 8 | ||||
-rw-r--r-- | modules/web-services.nix | 4 |
2 files changed, 6 insertions, 6 deletions
@@ -163,11 +163,11 @@ "nixpkgs_old": "nixpkgs_old" }, "locked": { - "lastModified": 1732190505, - "narHash": "sha256-XmpuhO07VNE3GlWfm/jnqZ8jwwNb0NmUSlYnnYz7gXE=", + "lastModified": 1732822990, + "narHash": "sha256-Wr8gzDD2O6jIDwa74BM2gwx8zKqbFiX05NAq71QVGyw=", "ref": "refs/heads/master", - "rev": "456fefaafb6eae1edc403aff7dd6ff2f8034b4db", - "revCount": 67980, + "rev": "67bb2ba2a800bccc2323404aa9297b02ca836142", + "revCount": 68535, "type": "git", "url": "ssh://[email protected]/mixrank/mixrank" }, 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" ]; |