From 25b496bec283f942b481371e774bcbe0a13b77e3 Mon Sep 17 00:00:00 2001 From: Joseph Hanson Date: Mon, 29 Apr 2024 10:42:31 -0500 Subject: [PATCH] Update ownership of password. --- nixos/telperion/configuration.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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; }; }; };