fix: home.file

This commit is contained in:
2026-06-08 22:13:44 +02:00
parent e42b1f9725
commit 75002217f3
+16
View File
@@ -15,4 +15,20 @@
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;
};
}