nix-git-cherry-picker: init

This commit is contained in:
2026-06-08 13:08:35 +02:00
parent 774b7c0a77
commit efe30f4c1d
4 changed files with 48 additions and 0 deletions
+1
View File
@@ -65,6 +65,7 @@
librewolf
mullvad
neovim
nixGitCherryPicker-laptop
notewrapper
oh-my-zsh
ripgrep
+18
View File
@@ -0,0 +1,18 @@
{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;
};
};
}