homeage icon indicating copy to clipboard operation
homeage copied to clipboard

Regression on systemd service

Open gvolpe opened this issue 1 year ago • 2 comments

I just noticed #31 introduced a regression when running homeage as a service, symlinks are no longer created on startup. Haven't had time to investigate yet, I simply reverted to the previous commit for now.

I only have a Github token as a secret and the symlink is not being created when activating new HM builds.

let secrets = { pkgs, config, ... }: {
  homeage = {
    identityPaths = [ "~/.ssh/id_ed25519" ];
    pkg = pkgs.rage;

    file."github-token" = {
      source = ./github.age;
      path = "github-notifications-token";
      symlinks = [ "${config.xdg.configHome}/secrets/github" ];
    };
  };
};
in [ secrets ]

gvolpe avatar Sep 27 '22 07:09 gvolpe