mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-12-22 14:20:44 -06:00
43 lines
1.1 KiB
Nix
43 lines
1.1 KiB
Nix
{
|
|
inputs,
|
|
config,
|
|
enabled,
|
|
enableAttrs,
|
|
listify,
|
|
...
|
|
}:
|
|
{
|
|
imports = [
|
|
inputs.comin.nixosModules.comin
|
|
];
|
|
|
|
oizys = {
|
|
rune.motd = enabled;
|
|
languages = "nim|node|python|nushell" |> listify;
|
|
} // ("docker|backups|nix-ld" |> listify |> enableAttrs);
|
|
|
|
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";
|
|
passwordFile = config.sops.secrets.restic-algiz.path;
|
|
paths = [
|
|
"/home/daylin/services/git/"
|
|
"/home/daylin/services/gotosocial/"
|
|
"/home/daylin/services/caddy/"
|
|
"/home/daylin/services/wedding-website/"
|
|
];
|
|
};
|
|
|
|
# git user handles the forgjo ssh authentication
|
|
users.users.git.isNormalUser = true;
|
|
|
|
sops = {
|
|
age.sshKeyPaths = [ "/etc/ssh/ssh_host_ed25519_key" ];
|
|
defaultSopsFile = ./secrets.yaml;
|
|
# by default is accessible only by root:root which should work with above service
|
|
secrets.restic-algiz = { };
|
|
};
|
|
}
|