summaryrefslogtreecommitdiff
path: root/hosts/vidhar/audiobookshelf.nix
blob: 0f3b73e88d31bf3fd15ba56195c796161d0ab9e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ pkgs, ... }:

{
  config = {
    services.audiobookshelf = {
      enable = true;
      host = "2a03:4000:52:ada:4:1::";
      port = 28982;
    };

    users.groups.audiobookshelf.members = [ "gkleen" ];
  };
}