nixos/services/go2rtc.nix
2026-01-21 09:39:46 +00:00

19 lines
318 B
Nix

{ config, pkgs, lib, ... }:
let
sops-nix = builtins.fetchTarball {
url = "https://github.com/Mic92/sops-nix/archive/master.tar.gz";
};
in
{
config = lib.mkIf (config.networking.hostName == "FredOS-Mediaserver") {
imports = [
"${sops-nix}/modules/sops"
# your other imports
];
};
}