Update ownership of password.

This commit is contained in:
Joseph Hanson 2024-04-29 10:42:31 -05:00
parent 8b38036a2e
commit 25b496bec2
Signed by: jahanson
SSH key fingerprint: SHA256:vy6dKBECV522aPAwklFM3ReKAVB086rT3oWwiuiFG7o

View file

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