nitpicking

This commit is contained in:
Motiejus Jakštys 2023-09-11 17:27:14 +03:00
parent 583f74cf3f
commit 5721531486
1 changed files with 4 additions and 4 deletions

View File

@ -45,14 +45,14 @@ in {
config = with config.mj.base.zfsborg;
lib.mkIf enable {
systemd.services."zfsborg-snapshot-dirs" = let
mountpoints = lib.unique (lib.catAttrs "mountpoint" dirs);
in {
systemd.services."zfsborg-snapshot-dirs" = {
description = "zfsborg prepare snapshot directories";
wantedBy = ["multi-user.target"];
serviceConfig = {
Type = "oneshot";
ExecStart =
ExecStart = let
mountpoints = lib.unique (lib.catAttrs "mountpoint" dirs);
in
builtins.map
(d: "${pkgs.coreutils}/bin/mkdir -p ${d}/.snapshot-latest")
mountpoints;