Update ownership of password.
This commit is contained in:
parent
8b38036a2e
commit
25b496bec2
1 changed files with 3 additions and 2 deletions
|
@ -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;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
Reference in a new issue