mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-11-05 06:03:15 -06:00
44 lines
957 B
Nix
44 lines
957 B
Nix
{
|
|
self,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
imports = with self.nixosModules; [
|
|
docker
|
|
restic
|
|
];
|
|
|
|
oizys.languages = [
|
|
"nim"
|
|
"python"
|
|
];
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
rclone
|
|
|
|
(pkgs.writeShellScriptBin "gitea" ''
|
|
ssh -p 2222 -o StrictHostKeyChecking=no git@127.0.0.1 "SSH_ORIGINAL_COMMAND=\"$SSH_ORIGINAL_COMMAND\" $0 $@"
|
|
'')
|
|
];
|
|
|
|
services.restic.backups.gdrive = {
|
|
# directories created by gitea and soft-serve aren't world readable
|
|
user = "root";
|
|
rcloneConfigFile = "/home/daylin/.config/rclone/rclone.conf";
|
|
repository = "rclone:g:archives/algiz";
|
|
passwordFile = "/home/daylin/.config/restic/algiz-pass";
|
|
paths = ["/home/daylin/services/git/" "/home/daylin/services/gotosocial/" "home/daylin/services/caddy"];
|
|
};
|
|
|
|
security.sudo.wheelNeedsPassword = false;
|
|
|
|
users.users = {
|
|
daylin = {
|
|
extraGroups = ["docker"];
|
|
};
|
|
|
|
git = {
|
|
isNormalUser = true;
|
|
};
|
|
};
|
|
}
|