fix(rsync): move brontes to modules and fix missed renames

This commit is contained in:
Nydragon 2024-10-13 23:53:45 +02:00
parent 169ada30f6
commit b8c7300e8a
Signed by: nydragon
SSH key fingerprint: SHA256:iQnIC12spf4QjWSbarmkD2No1cLMlu6TWoV7K6cYF5g
4 changed files with 28 additions and 49 deletions

View file

@ -1,11 +1,13 @@
## Targets
| Name | Arch | Description |
| ------- | ------ | ----------- |
| Marr | x86_64 | |
| Brontes | x86_64 | |
| Styrax | x86_64 | |
| Name | Arch | Description |
| ------- | ------- | ---------------------------------------- |
| marr | x86_64 | Laptop Workstation |
| brontes | x86_64 | Desktop Workstation |
| styrax | x86_64 | |
| raptus | x86_64 | |
| nihilus | aarch64 | Small Pi used to make "off-site" backups |
## Thanks to these awesome people for inspiration and documentation:
## Thanks to these people for inspiration and documentation:
- https://github.com/notashelf/nyx

View file

@ -47,16 +47,19 @@
};
rsync-backup = {
enable = true;
sources = [ "/home/ny/notes" ];
target = {
location = "brontes-backup";
type = "rsyncd";
host = "nihilus";
};
incremental.enable = true;
modules = [
{
sources = [ "/home/ny/notes" ];
target = {
location = "brontes-backup";
type = "rsyncd";
host = "nihilus";
};
incremental.enable = true;
}
];
};
};
media.enableAll = true;
};

View file

@ -143,16 +143,14 @@ mkIf config.services.headscale.enable {
name = "headscale-acl.hujson";
text = builtins.toJSON {
acls = [
(mkAcl [ "tag:client" ] [ "tag:client:*" ]) # client -> client
(mkAcl [ "tag:client" ] [ "tag:server:*" ]) # client -> server
{
action = "accept";
src = [
"tag:client"
"tag:server"
];
dst = [ "tag:backup:${toString options.modules.services.rsync-daemon.port.default}" ];
}
(mkAcl [ "tag:client" ] [
"tag:client:*"
"tag:server:*"
]) # client -> {client, server}
(mkAcl [
"tag:client"
"tag:server"
] [ "tag:backup:${toString options.modules.server.rsync-daemon.port.default}" ])
];
ssh = [

View file

@ -83,21 +83,9 @@ in
default = "rsync-backup";
};
user = mkOption {
type = str;
default = "rsync-backup";
description = "User account under which Rsync runs.";
};
group = mkOption {
type = str;
default = "rsync-backup";
description = "Group under which Rsync runs.";
};
port = mkOption {
type = port;
default = options.modules.services.rsync-daemon.port.default;
default = options.modules.server.rsync-daemon.port.default;
};
};
@ -160,17 +148,5 @@ in
};
}) cfg.modules
);
users.users = mkIf (cfg.user == "rsync-backup") {
rsync-backup = {
useDefaultShell = true;
group = cfg.group;
isSystemUser = true;
};
};
users.groups = mkIf (cfg.group == "rsync-backup") {
rsync-backup = { };
};
};
}