Compare commits

...

2 commits

Author SHA1 Message Date
4d725ec1b8
Add autorestic fish abbreviation 2024-04-09 15:20:34 +02:00
75bd610b36
Enable Nextcloud CRON 2024-04-09 15:20:16 +02:00
2 changed files with 8 additions and 0 deletions

View file

@ -90,6 +90,7 @@ in {
udumount = "udisksctl unmount -b";
fftp = mkIf hasLftp "lftp -u ghoscht, sftp://192.168.178.35";
arss = "sudo autorestic exec -av -- snapshots";
};
functions = {
# Disable greeting

View file

@ -7,6 +7,13 @@ in {
};
};
services.cron = {
enable = true;
systemCronJobs = [
"*/5 * * * * root . /etc/profile; docker exec -u www-data nextcloud php /var/www/html/cron.php"
];
};
sops.secrets."nextcloud/mysql_root_password" = {
owner = vars.user;
};