nix-config/home-manager/opdavies/t480.nix

38 lines
700 B
Nix
Raw Normal View History

2025-07-10 22:50:41 +01:00
{ config, pkgs, ... }:
{
programs = {
zsh.shellAliases =
let
inherit (config.xdg.userDirs) documents;
in
{
"wiki-push" =
"rsync -avzP ${documents}/notes nixedo.oliverdavies.uk:${documents} --delete --delete-after";
};
};
2025-07-10 22:50:41 +01:00
home.packages = with pkgs; [
backup-websites
build-glove80
count-tags
2025-07-11 01:40:00 +01:00
create-script
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
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
];
xdg.configFile."pam-gnupg".text = ''
098EE055DAD2B9CB68154C6759DD38292D2273B6
1E21B58D69FFEFAD077F152A50FEA938A3413F50
'';
}