⚘ use your pds as a git remote if you want to ⚘
4
fork

Configure Feed

Select the types of activity you want to include in your feed.

Installing with Nix#

Try it without installing#

nix run git+https://codeberg.org/notplants/git-remote-pds

Imperative install (user profile)#

nix profile install git+https://codeberg.org/notplants/git-remote-pds

Persists across reboots but lives outside your system configuration.

NixOS system configuration#

Add the input to your system flake:

# flake.nix
{
  inputs = {
    # ...
    git-remote-pds = {
      url = "git+https://codeberg.org/notplants/git-remote-pds";
      inputs.nixpkgs.follows = "nixpkgs";
    };
  };
}

Then add the package to your system:

environment.systemPackages = [
  inputs.git-remote-pds.packages.${pkgs.system}.default
];

Rebuild with sudo nixos-rebuild switch.

Home Manager#

Same flake input as above, then:

home.packages = [
  inputs.git-remote-pds.packages.${pkgs.system}.default
];