2025-07-10 22:50:41 +01:00
|
|
|
{ config, pkgs, ... }:
|
2025-04-23 14:19:05 +01:00
|
|
|
|
2025-04-23 14:19:05 +01:00
|
|
|
{
|
2025-05-06 19:51:38 +01:00
|
|
|
programs = {
|
|
|
|
zsh.shellAliases =
|
2025-04-29 09:41:20 +01:00
|
|
|
let
|
2025-05-06 19:51:38 +01:00
|
|
|
inherit (config.xdg.userDirs) documents;
|
2025-04-29 09:41:20 +01:00
|
|
|
in
|
2025-05-06 19:51:38 +01:00
|
|
|
{
|
|
|
|
"wiki-push" =
|
2025-10-14 07:58:39 +01:00
|
|
|
"rsync -avzP ${documents}/notes nixedo.oliverdavies.uk:${documents} --delete --delete-after";
|
2025-05-06 19:51:38 +01:00
|
|
|
};
|
2025-04-29 09:41:20 +01:00
|
|
|
};
|
|
|
|
|
2025-07-10 22:50:41 +01:00
|
|
|
home.packages = with pkgs; [
|
|
|
|
backup-websites
|
|
|
|
build-glove80
|
2025-07-11 12:28:42 +01:00
|
|
|
count-tags
|
2025-07-11 01:40:00 +01:00
|
|
|
create-script
|
2025-07-11 12:28:42 +01:00
|
|
|
get-tags
|
2025-07-10 23:02:21 +01:00
|
|
|
qrencode
|
2025-07-10 22:50:41 +01:00
|
|
|
mounter
|
|
|
|
move-firefox-screenshots
|
2025-07-11 18:31:19 +01:00
|
|
|
set-background
|
2025-07-10 22:50:41 +01:00
|
|
|
tag-release
|
2025-07-11 01:50:28 +01:00
|
|
|
time-until
|
2025-07-11 01:31:02 +01:00
|
|
|
timer
|
2025-07-10 22:50:41 +01:00
|
|
|
unmounter
|
|
|
|
update-all-git-repos
|
2025-08-08 02:25:28 +01:00
|
|
|
vic
|
2025-07-10 22:50:41 +01:00
|
|
|
];
|
|
|
|
|
2025-04-23 14:19:05 +01:00
|
|
|
xdg.configFile."pam-gnupg".text = ''
|
|
|
|
098EE055DAD2B9CB68154C6759DD38292D2273B6
|
|
|
|
1E21B58D69FFEFAD077F152A50FEA938A3413F50
|
|
|
|
'';
|
|
|
|
}
|