fix(rsync): move brontes to modules and fix missed renames
This commit is contained in:
parent
169ada30f6
commit
b8c7300e8a
4 changed files with 28 additions and 49 deletions
12
README.md
12
README.md
|
@ -1,11 +1,13 @@
|
|||
## Targets
|
||||
|
||||
| Name | Arch | Description |
|
||||
| ------- | ------ | ----------- |
|
||||
| Marr | x86_64 | |
|
||||
| Brontes | x86_64 | |
|
||||
| Styrax | x86_64 | |
|
||||
| ------- | ------- | ---------------------------------------- |
|
||||
| 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
|
||||
|
|
|
@ -47,6 +47,8 @@
|
|||
};
|
||||
rsync-backup = {
|
||||
enable = true;
|
||||
modules = [
|
||||
{
|
||||
sources = [ "/home/ny/notes" ];
|
||||
target = {
|
||||
location = "brontes-backup";
|
||||
|
@ -54,9 +56,10 @@
|
|||
host = "nihilus";
|
||||
};
|
||||
incremental.enable = true;
|
||||
}
|
||||
];
|
||||
};
|
||||
};
|
||||
|
||||
media.enableAll = true;
|
||||
};
|
||||
|
||||
|
|
|
@ -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 = [
|
||||
(mkAcl [ "tag:client" ] [
|
||||
"tag:client:*"
|
||||
"tag:server:*"
|
||||
]) # client -> {client, server}
|
||||
(mkAcl [
|
||||
"tag:client"
|
||||
"tag:server"
|
||||
];
|
||||
dst = [ "tag:backup:${toString options.modules.services.rsync-daemon.port.default}" ];
|
||||
}
|
||||
] [ "tag:backup:${toString options.modules.server.rsync-daemon.port.default}" ])
|
||||
];
|
||||
|
||||
ssh = [
|
||||
|
|
|
@ -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 = { };
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue