Skip to content

Commit

Permalink
WIP: add notes for missing persistence/backup
Browse files Browse the repository at this point in the history
TODO:
* Look at for more inspiration nix-community/impermanence#108
* Do home-manager
* Common files nix-community/impermanence#10
  • Loading branch information
ambroisie committed Jul 2, 2024
1 parent 3150f9b commit a9a1028
Show file tree
Hide file tree
Showing 11 changed files with 24 additions and 0 deletions.
1 change: 1 addition & 0 deletions modules/nixos/services/aria/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -72,5 +72,6 @@ in
};

# NOTE: unfortunately aria2 does not log connection failures for fail2ban
# FIXME: persistence?
};
}
2 changes: 2 additions & 0 deletions modules/nixos/services/audiobookshelf/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,7 @@ in
};
};
};

# FIXME: persistence?
};
}
2 changes: 2 additions & 0 deletions modules/nixos/services/flood/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,7 @@ in
inherit (cfg) port;
};
};

# FIXME: persistence?
};
}
3 changes: 3 additions & 0 deletions modules/nixos/services/grocy/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -36,5 +36,8 @@ in
forceSSL = true;
useACMEHost = config.networking.domain;
};

# FIXME: backup
# FIXME: persistence
};
}
3 changes: 3 additions & 0 deletions modules/nixos/services/mealie/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -71,5 +71,8 @@ in
};
};
};

# FIXME: backup
# FIXME: persistence
};
}
3 changes: 3 additions & 0 deletions modules/nixos/services/miniflux/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -48,5 +48,8 @@ in
inherit (cfg) port;
};
};

# FIXME: backup
# FIXME: persistence
};
}
2 changes: 2 additions & 0 deletions modules/nixos/services/pyload/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -54,5 +54,7 @@ in
};

# FIXME: fail2ban
# FIXME: backup
# FIXME: persistence
};
}
3 changes: 3 additions & 0 deletions modules/nixos/services/tandoor-recipes/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -82,5 +82,8 @@ in
};
};
};

# FIXME: backup
# FIXME: persistence
};
}
2 changes: 2 additions & 0 deletions modules/nixos/services/vikunja/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -99,5 +99,7 @@ in
config.services.vikunja.settings.files.basepath
];
};

# FIXME: persistence
};
}
2 changes: 2 additions & 0 deletions modules/nixos/services/woodpecker/server/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -61,5 +61,7 @@ in
port = cfg.rpcPort;
};
};

# FIXME: persistence
};
}
1 change: 1 addition & 0 deletions modules/nixos/system/persist/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ in
++ (lib.optionals config.virtualisation.docker.enable [
"/var/lib/docker"
])
# FIXME: podman
++ cfg.directories
;
};
Expand Down

0 comments on commit a9a1028

Please sign in to comment.