Files
nixos/modules/utilities/nixGitCherryPicker.nix
T
2026-06-08 13:08:35 +02:00

19 lines
449 B
Nix

{inputs, ...}: {
flake.homeModules.nixGitCherryPicker-laptop = {pkgs, ...}: {
home.packages = [
inputs.nix-git-cherry-picker.packages.${pkgs.system}.default
];
home.file.".config/nix-git-cherry-picker/config.json" = {
enable = true;
text = ''
{
"localBranch": "laptop",
"remoteBranch": "desktop",
"nixConfigPath": "~/nixos/"
}
'';
force = true;
};
};
}