Address Feedback

This commit is contained in:
Gonne 2024-03-04 09:23:25 +01:00
parent b0af48a9d0
commit e340a7eb75

View file

@ -20,6 +20,11 @@ in {
config = mkIf cfg.enable {
services.borgbackup = {
# repos are made available at ssh://borg@hostname and served according to the presented ssh-key
# If you think about adding keys of nix machines:
# Congratulations, you are the first person to make backups from a nixos machine.
# Your won the task of automatizing this endeavor, so in future we don't need to hand copy any
# ssh keys anymore.
repos = {
aphoom-zhah = {
authorizedKeysAppendOnly = [
@ -138,7 +143,10 @@ in {
users.users = {
fsaccount = {
description = "FS Account backup";
isNormalUser = true;
isSystemUser = true;
home = "/home/fsaccount";
createHome = true;
group = "users";
};
};
};