2024-07-30 15:06:34 +01:00
|
|
|
{ pkgs, ... }:
|
|
|
|
{
|
2024-07-30 06:34:11 +01:00
|
|
|
home = {
|
|
|
|
packages = [
|
2024-08-22 06:55:41 +01:00
|
|
|
(pkgs.writeShellScriptBin "esync" (builtins.readFile ./shell/esync.sh))
|
2024-09-21 05:47:49 +01:00
|
|
|
(pkgs.writeShellScriptBin "gsync" (builtins.readFile ./shell/gsync.sh))
|
2024-07-30 15:06:34 +01:00
|
|
|
(pkgs.writeShellScriptBin "rsync-local-config" (builtins.readFile ./shell/rsync-local-config.sh))
|
|
|
|
(pkgs.writeShellScriptBin "xdg-query-program" (builtins.readFile ./shell/xdg-query-program.sh))
|
2024-07-30 06:34:11 +01:00
|
|
|
];
|
2024-09-22 11:30:15 +01:00
|
|
|
shellAliases = {
|
|
|
|
protonup = "sudo wg-quick up protonvpn && sudo wg";
|
|
|
|
protondown = "sudo wg-quick down protonvpn";
|
|
|
|
};
|
2024-07-30 06:34:11 +01:00
|
|
|
};
|
2024-07-03 07:15:39 +01:00
|
|
|
}
|