diff --git a/nixos/telperion/configuration.nix b/nixos/telperion/configuration.nix index f2bbc80..96c9a27 100644 --- a/nixos/telperion/configuration.nix +++ b/nixos/telperion/configuration.nix @@ -2,7 +2,7 @@ # your system. Help is available in the configuration.nix(5) man page, on # https://search.nixos.org/options and in the NixOS manual (`nixos-help`). -{ pkgs, ... }: +{ config, pkgs, ... }: { imports = @@ -14,7 +14,8 @@ # Mounts unencrypted sops values at /run/secrets/rndc_keys accessible by root only by default. secrets = { "rndc_keys" = { - # owner = config.users.users + owner = config.users.users.named.name; + inherit (config.users.users.named) group; }; }; };