⚘ use your pds as a git remote if you want to ⚘
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
];