enhancement/15 #16

Merged
wi11-holdsworth merged 4 commits from enhancement/15 into main 2025-09-29 22:54:08 +10:00
Showing only changes of commit 00c0979552 - Show all commits

View file

@ -1,4 +1,9 @@
{ config, lib, ... }:
{
config,
lib,
pkgs,
...
}:
let
feature = "server";
in
@ -26,6 +31,17 @@ in
# keep-sorted end
users.groups.media = { };
services.borgbackup.jobs =
import ../backup.nix "srv"
{
paths = [ "/srv" ];
}
{
inherit config;
inherit lib;
inherit pkgs;
};
};
imports = [ ];