auto empty trash on login

This commit is contained in:
Noah Masur 2023-07-17 22:24:41 -04:00
parent 8eb7ef0be7
commit b07a8f5e20

View File

@ -40,6 +40,7 @@
defaultApplications."inode/directory" =
lib.mkBefore [ "org.gnome.Nautilus.desktop" ];
};
};
# # Set default for opening directories
@ -50,6 +51,13 @@
# lib.mkForce [ "org.gnome.Nautilus.desktop" ];
# };
# Delete Trash files older than 1 week
systemd.user.services.empty-trash = {
description = "Empty Trash on a regular basis";
wantedBy = [ "default.target" ];
script = "${pkgs.trash-cli}/bin/trash-empty 7";
};
};
}