mirror of
https://github.com/Ascyii/nixos.git
synced 2025-12-31 22:44:23 -05:00
17 lines
253 B
Nix
17 lines
253 B
Nix
{ pkgs, config, lib, inputs, ...}:
|
|
|
|
{
|
|
|
|
imports =
|
|
[
|
|
#inputs.sops-nix.nixosModules.sops
|
|
];
|
|
|
|
# also one can access the path and then cat it
|
|
services.ddclient = {
|
|
enable = true;
|
|
configFile = config.sops.templates."ddclient-temp".path;
|
|
};
|
|
|
|
}
|