treewide: use inputs instead of self

This commit is contained in:
2025-03-16 15:45:04 +00:00
parent 7cd825d938
commit ecbdfbaa7f
28 changed files with 67 additions and 61 deletions

View File

@ -1,8 +1,8 @@
{
inputs,
config,
lib,
pkgs,
self,
...
}:
@ -25,7 +25,7 @@ in
config = lib.mkIf cfg.enable {
age.secrets."passwords/services/tailscale/${hostname}-authkey" = {
file = "${self.inputs.secrets}/passwords/services/tailscale/${hostname}-authkey.age";
file = "${inputs.secrets}/passwords/services/tailscale/${hostname}-authkey.age";
};
environment.systemPackages = [ pkgs.tailscale ];