diff options
| author | Dominik Kaiser | 2025-02-16 23:32:45 +0100 |
|---|---|---|
| committer | Dominik Kaiser | 2025-02-16 23:32:45 +0100 |
| commit | 054400c4774de904fca13f49d4a6f5f7ca764a35 (patch) | |
| tree | b19d626500975294c107cebca90d6c8583c31cd0 | |
| parent | 4a5b189fa81c6729850b27e28bd12a1697a41b19 (diff) | |
| download | nixos-054400c4774de904fca13f49d4a6f5f7ca764a35.tar.gz nixos-054400c4774de904fca13f49d4a6f5f7ca764a35.zip | |
Set file permissions using tmpfiles for git on antares
| -rw-r--r-- | hosts/antares/configuration.nix | 4 |
1 files changed, 4 insertions, 0 deletions
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"; } |
