summaryrefslogtreecommitdiff
path: root/nixos/hosts/ev
diff options
context:
space:
mode:
authorMartin Fischer <martin@push-f.com>2025-06-02 18:54:24 +0200
committerMartin Fischer <martin@push-f.com>2025-06-05 22:01:51 +0200
commit71492b0d10b5eb7f85a1b6dc28707adea2f7f068 (patch)
tree8a761d73e30514f87553df09eec9eee9a3bb5bb4 /nixos/hosts/ev
parent04f8ec6294a145020b7c05d704913247f131aceb (diff)
deps: update to NixOS 25.05HEADmaster
I'm not sure why the Kodi user now needs to be in the `audio` group but without it the user can only see a dummy device.
Diffstat (limited to 'nixos/hosts/ev')
-rw-r--r--nixos/hosts/ev/kodi.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/nixos/hosts/ev/kodi.nix b/nixos/hosts/ev/kodi.nix
index 2aea216..3862dfe 100644
--- a/nixos/hosts/ev/kodi.nix
+++ b/nixos/hosts/ev/kodi.nix
@@ -7,7 +7,10 @@ let
in
{
config = {
- users.extraUsers.kodi.isNormalUser = true;
+ users.users.kodi = {
+ isNormalUser = true;
+ extraGroups = ["audio"];
+ };
services = {
cage = {