nixos-config/modules/nixos/_private/suites/archiving.nix

25 lines
1002 B
Nix
Raw Normal View History

# All of your embarrassing moments, marked here forever.
{ config, lib, pkgs, ... }:
let cfg = config.suites.archiving;
2021-11-25 13:45:48 +00:00
in {
options.suites.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.
2022-07-18 23:07:53 +00:00
archiver # Extract and create all of the archives.
2021-11-25 13:45:48 +00:00
borgbackup # I'm pretty sure this is named after some thing from a franchise somewhere but I'm not omnipresent.
borgmatic # BorgBackup but for those who can't script.
2021-11-25 13:45:48 +00:00
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.
2021-11-25 13:45:48 +00:00
yt-dlp # More active fork after youtube-dl has been striked.
];
};
}