From e4419b96311b03139a20b963b19a7dfd0ce3dd35 Mon Sep 17 00:00:00 2001 From: Tristan Date: Wed, 16 Jul 2025 16:51:55 +0100 Subject: [PATCH] alpine: add media group --- nixos/services/arr.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nixos/services/arr.nix b/nixos/services/arr.nix index cc2a9ff..833614f 100644 --- a/nixos/services/arr.nix +++ b/nixos/services/arr.nix @@ -1,4 +1,4 @@ -{config, lib, ...}: let +{config, lib, user, ...}: let inherit (config) sops; inherit (sops) templates placeholder; in { @@ -8,6 +8,7 @@ in { "dotnet-sdk-6.0.428" "dotnet-sdk-wrapped-6.0.428" ]; + users.users.${user}.extraGroups = ["media"]; users.groups.media = { gid = 979; };