nix-config/hosts/nixedo/services/default.nix

26 lines
492 B
Nix
Raw Normal View History

{ config, pkgs, ... }:
2025-04-26 00:26:43 +01:00
{
imports = [
./homepage
2025-04-26 00:26:43 +01:00
./samba.nix
./uptime-kuma.nix
2025-04-30 14:21:52 +01:00
./vaultwarden.nix
2025-04-26 00:26:43 +01:00
];
2025-04-30 20:15:57 +01:00
services = {
tailscale.enable = true;
};
services.gitea-actions-runner.instances.default = {
enable = true;
labels = [
"nixos-host:host"
];
name = config.networking.hostName;
token = ''$(${pkgs.coreutils}/bin/cat ${config.age.secrets.forgejo-runner-token.path}')'';
url = config.services.forgejo.settings.server.ROOT_URL;
};
2025-04-26 00:26:43 +01:00
}