nixos/services/go2rtc.nix
2026-01-21 09:40:58 +00:00

21 lines
312 B
Nix

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