mirror of
https://git.feal.no/felixalb/nixos-config.git
synced 2024-12-23 04:27:31 +01:00
12 lines
223 B
Nix
12 lines
223 B
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
{
|
|
sops.secrets."domeneshop/netrc" = { };
|
|
|
|
services.domeneshop-dyndns = {
|
|
enable = true;
|
|
domain = "site2.feal.no";
|
|
netrcFile = config.sops.secrets."domeneshop/netrc".path;
|
|
};
|
|
}
|