nix-config/home-manager/opdavies/t480.nix
Oliver Davies 546341fbc9
All checks were successful
/ check (push) Successful in 2m38s
Replace vix with vic
2025-08-08 02:25:28 +01:00

41 lines
758 B
Nix

{ config, pkgs, ... }:
{
programs = {
zsh.shellAliases =
let
inherit (config.xdg.userDirs) documents;
in
{
"wiki-push" =
"rsync -avzP ${documents}/wiki nixedo.oliverdavies.uk:${documents} --delete --delete-after";
};
};
home.packages = with pkgs; [
backup-websites
build-glove80
count-tags
create-script
displayselect
get-tags
qrencode
mounter
move-firefox-screenshots
set-background
tag-release
time-until
timer
todos-add
todos-edit
unmounter
update-all-git-repos
vic
zet-new
];
xdg.configFile."pam-gnupg".text = ''
098EE055DAD2B9CB68154C6759DD38292D2273B6
1E21B58D69FFEFAD077F152A50FEA938A3413F50
'';
}