mirror of
https://github.com/tboerger/nixos-config
synced 2024-11-23 03:32:08 +01:00
17 lines
218 B
Nix
17 lines
218 B
Nix
{ pkgs, config, lib, ... }:
|
|
with lib;
|
|
|
|
{
|
|
services = {
|
|
filebrowser = {
|
|
enable = true;
|
|
user = "media";
|
|
group = "users";
|
|
|
|
settings = {
|
|
root = "/var/lib/music";
|
|
};
|
|
};
|
|
};
|
|
}
|