Hi! I ran into the issue that my kube config, which I manage with home-manager is world read- and writable. I hoped that there is an easy option to set file permissions with home-manager, e.g. home.file."foo".permissions = 0644 but something like this does not exist. All solutions a short web search turns up are overly complicated for something that seems to be a trivial task.

What is the easiest way to set permissions for a file with home-manager?

  • @[email protected]
    link
    fedilink
    English
    22 months ago

    I use/abuse “systemd.user.tmpfiles.rules” to ensure important files and folders are present with the desired permissions. These are “for creation, deletion and cleaning of volatile and temporary files automatically”, but from what I can tell, if you don’t specify values for cleanup etc. then they are just created if they don’t exist, permissions adjusted if they do and they are otherwise left alone. See the manpage tmpfiles.d(5) for the exact format.

    The config looks something like this:

    systemd.user.tmpfiles.rules = [
          "d /home/username/path/to/directory 0750 username groupname - -"
          "f /home/username/path/to/file.ext 0700 username groupname - -"
    ];`___`
    

    where username and groupname are replaced with the actual values for the user being home-managed.