diff --git a/nix/module.nix b/nix/module.nix index d16dde0e636328c0f4409eaa363d9728a275f69f..1dc7638ad0fd83cbc1139d1fac443dcc6e3d23bf 100644 --- a/nix/module.nix +++ b/nix/module.nix @@ -118,19 +118,6 @@ users.groups = lib.mapAttrs' (name: instanceCfg: lib.nameValuePair instanceCfg.group { }) ( lib.filterAttrs (name: instanceCfg: instanceCfg.enable) cfg ); - systemd.tmpfiles.settings = lib.mapAttrs' ( - name: instanceCfg: - lib.nameValuePair "10-ugit-${name}" { - "${instanceCfg.homeDir}" = { - d = { - mode = "0750"; - user = instanceCfg.user; - group = instanceCfg.group; - }; - }; - } - ) (lib.filterAttrs (name: instanceCfg: instanceCfg.enable) cfg); - systemd.services = lib.foldl' ( acc: name: let