home: do not depend on xclip

it brings in xclip to servers too
This commit is contained in:
Motiejus Jakštys 2024-08-05 22:09:53 +03:00
parent b7becedf33
commit ee51b93a02
1 changed files with 2 additions and 2 deletions

View File

@ -224,8 +224,8 @@ in
bash = {
enable = true;
shellAliases = {
"l" = "echo -n ł | ${pkgs.xclip}/bin/xclip -selection clipboard";
"L" = "echo -n Ł | ${pkgs.xclip}/bin/xclip -selection clipboard";
"l" = "echo -n ł | xclip -selection clipboard";
"L" = "echo -n Ł | xclip -selection clipboard";
"gp" = "${pkgs.git}/bin/git remote | ${pkgs.parallel}/bin/parallel --verbose git push";
};
initExtra = ''