nixos-config/modules/nixos/profiles/archiving.nix
Gabriel Arazas 14f1f8c75f config: disable Archivebox
It is broken and it has been like that for a couple of months so we'll
just disable it completely. I mostly use the web UI with manual
management of archiving anyways.
2022-09-21 14:17:11 +08:00

25 lines
1.0 KiB
Nix

# All of your embarrassing moments, marked here forever.
{ config, options, lib, pkgs, ... }:
let cfg = config.profiles.archiving;
in {
options.profiles.archiving.enable =
lib.mkEnableOption "installation of various archiving tools";
# This is not going to set BorgBackup NixOS services for you.
# Please do it for host-specific configs instead.
config = lib.mkIf cfg.enable {
environment.systemPackages = with pkgs; [
#archivebox # Create by ye' old pirate.
archiver # Extract and create all of the archives.
borgbackup # I'm pretty sure this is named after some thing from a franchise somewhere but I'm not omnipresent.
borgmatic # For those insisting on configurations for BorgBackup.
fanficfare # Your fanfics in my hard drive? Pay me rent first.
gallery-dl # All image galleries are not safe, too.
monolith # Bundling web pages into a cinnamon roll.
wget # An WARC creator.
yt-dlp # More active fork after youtube-dl has been striked.
];
};
}