From: Dominik Kaiser Date: Sun, 16 Feb 2025 22:32:45 +0000 (+0100) Subject: Set file permissions using tmpfiles for git on antares X-Git-Url: https://git.dkaiser.de/?a=commitdiff_plain;h=054400c4774de904fca13f49d4a6f5f7ca764a35;p=config%2Fnixos.git Set file permissions using tmpfiles for git on antares --- diff --git a/hosts/antares/configuration.nix b/hosts/antares/configuration.nix index 3540a37..e2d9bdc 100644 --- a/hosts/antares/configuration.nix +++ b/hosts/antares/configuration.nix @@ -117,5 +117,9 @@ networking.firewall.allowedTCPPorts = [ 80 443 ]; + systemd.tmpfiles.rules = [ + "d /srv/git 755 git git - -" + ]; + system.stateVersion = "24.05"; }