mirror of
https://github.com/tomasriveral/nixos.git
synced 2026-08-12 10:30:44 +02:00
54 lines
1.4 KiB
Nix
54 lines
1.4 KiB
Nix
{inputs, ...}: {
|
|
<<<<<<< desktop
|
|
flake.homeModules.nix-git-cherry-picker-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": "/home/tomasr/nixos/"
|
|
}
|
|
'';
|
|
force = true;
|
|
};
|
|
};
|
|
flake.homeModules.nix-git-cherry-picker-desktop = {pkgs, ...}: {
|
|
=======
|
|
flake.homeModules.nixGitCherryPicker-laptop = {pkgs, ...}: {
|
|
>>>>>>> main
|
|
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": "/home/tomasr/nixos/"
|
|
}
|
|
'';
|
|
force = true;
|
|
};
|
|
};
|
|
flake.homeModules.nix-git-cherry-picker-desktop = {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": "desktop",
|
|
"remoteBranch": "laptop",
|
|
"nixConfigPath": "/home/tomasr/nixos/"
|
|
}
|
|
'';
|
|
force = true;
|
|
};
|
|
} |