mirror of
https://github.com/genebean/dots.git
synced 2026-03-27 09:27:44 -04:00
10 lines
224 B
Nix
10 lines
224 B
Nix
{ pkgs, ... }: {
|
|
home.packages = with pkgs; [
|
|
# nothing here right now
|
|
];
|
|
programs = {
|
|
git.settings.aliases = {
|
|
kraken = "!gitkraken -p $(cd \"\${1:-.}\" && git rev-parse --show-toplevel)";
|
|
};
|
|
};
|
|
}
|