summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--usecases/server/hydra-server.nix5
-rw-r--r--usecases/server/jellyfin.nix1
2 files changed, 4 insertions, 2 deletions
diff --git a/usecases/server/hydra-server.nix b/usecases/server/hydra-server.nix
index 6fbbdee..3a1d62e 100644
--- a/usecases/server/hydra-server.nix
+++ b/usecases/server/hydra-server.nix
@@ -15,8 +15,9 @@ inputs:
15 config = { 15 config = {
16 services.hydra = { 16 services.hydra = {
17 enable = true; 17 enable = true;
18 #hydraURL = "https://hydra.huh.gdn"; 18 # TODO: for NixOS 21.05
19 #notificationSender = "hydra@huh.gdn"; 19 #hydraURL = "https://hydra.${config.networking.fqdn}";
20 #notificationSender = "hydra@${config.networking.fqdn}";
20 buildMachinesFiles = [ ]; 21 buildMachinesFiles = [ ];
21 # Don't build *everything* from source 22 # Don't build *everything* from source
22 useSubstitutes = true; 23 useSubstitutes = true;
diff --git a/usecases/server/jellyfin.nix b/usecases/server/jellyfin.nix
index 6f62c34..0e0a0e4 100644
--- a/usecases/server/jellyfin.nix
+++ b/usecases/server/jellyfin.nix
@@ -3,6 +3,7 @@ inputs:
3{ config, lib, pkgs, ... }: 3{ config, lib, pkgs, ... }:
4 4
5{ 5{
6 # TODO: for NixOS 21.05
6 imports = [ 7 imports = [
7 (inputs.nixpkgs-unstable.outPath + "/nixos/modules/services/misc/jellyfin.nix") 8 (inputs.nixpkgs-unstable.outPath + "/nixos/modules/services/misc/jellyfin.nix")
8 ]; 9 ];