mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-11-05 06:03:15 -06:00
54 lines
1.1 KiB
Nix
54 lines
1.1 KiB
Nix
{
|
|
self,
|
|
pkgs,
|
|
enabled,
|
|
...
|
|
}:
|
|
{
|
|
imports = with self.nixosModules; [ restic ];
|
|
|
|
oizys = {
|
|
languages = [
|
|
"nim"
|
|
"node" # for docker langservers
|
|
"python"
|
|
];
|
|
rune.motd = enabled;
|
|
|
|
docker = enabled;
|
|
backups = enabled;
|
|
nix-ld = enabled;
|
|
};
|
|
|
|
environment.systemPackages = with 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/"
|
|
"/home/daylin/services/wedding-website/"
|
|
];
|
|
};
|
|
|
|
security.sudo.wheelNeedsPassword = false;
|
|
|
|
users.users = {
|
|
daylin = {
|
|
extraGroups = [ "docker" ];
|
|
};
|
|
|
|
git = {
|
|
isNormalUser = true;
|
|
};
|
|
};
|
|
}
|