NixOS 24.05: rm depreciated option

This commit is contained in:
Daniel Langbein 2024-07-12 22:58:37 +02:00
parent 65a0f7bf2f
commit e74a116d19
2 changed files with 0 additions and 4 deletions

View File

@ -330,7 +330,6 @@ sudo btrbk -c ~/btrbk.cfg list
{ config, pkgs, ... }:
{
services.btrbk = {
extraPackages = [ pkgs.lz4 ];
# Lowest scheduling priority.
niceness = 19;
# Set of btrbk instances. The instance named btrbk is the default one.

View File

@ -18,9 +18,6 @@
];
services.btrbk = {
# Transport compression with `lz4`,
# see `./backup.nix`.
extraPackages = [ pkgs.lz4 ];
# Lowest scheduling priority.
niceness = 19;
# The `instances` option is set by `./snapshot.nix` and `./backup.nix`.