feat: add navidrome module and enable on shan
This commit is contained in:
parent
f8ce8ead18
commit
dfc0cb553f
5 changed files with 82 additions and 1 deletions
|
@ -52,6 +52,7 @@
|
||||||
perSystem =
|
perSystem =
|
||||||
{ pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
{
|
{
|
||||||
|
formatter = pkgs.nixfmt-rfc-style;
|
||||||
devShells.default = pkgs.mkShell {
|
devShells.default = pkgs.mkShell {
|
||||||
buildInputs = with pkgs; [
|
buildInputs = with pkgs; [
|
||||||
pre-commit
|
pre-commit
|
||||||
|
|
|
@ -21,7 +21,6 @@
|
||||||
hardware.bluetooth.powerOnBoot = true;
|
hardware.bluetooth.powerOnBoot = true;
|
||||||
|
|
||||||
services.blueman.enable = true;
|
services.blueman.enable = true;
|
||||||
services.flatpak.enable = true;
|
|
||||||
|
|
||||||
#: Power Consumption {{{
|
#: Power Consumption {{{
|
||||||
services.logind = {
|
services.logind = {
|
||||||
|
|
|
@ -14,11 +14,25 @@ in
|
||||||
./disk-config.nix
|
./disk-config.nix
|
||||||
../../modules/nix
|
../../modules/nix
|
||||||
];
|
];
|
||||||
|
|
||||||
boot.loader.grub = {
|
boot.loader.grub = {
|
||||||
efiSupport = true;
|
efiSupport = true;
|
||||||
efiInstallAsRemovable = true;
|
efiInstallAsRemovable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
modules.server.navidrome = {
|
||||||
|
enable = false;
|
||||||
|
library = {
|
||||||
|
path = "/mnt/music";
|
||||||
|
type = "nfs";
|
||||||
|
source = {
|
||||||
|
ip = "192.168.178.21";
|
||||||
|
path = "/mnt/Fort/data/music";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
settings = { };
|
||||||
|
};
|
||||||
|
|
||||||
services.openssh.enable = true;
|
services.openssh.enable = true;
|
||||||
|
|
||||||
environment.systemPackages = map lib.lowPrio [
|
environment.systemPackages = map lib.lowPrio [
|
||||||
|
|
|
@ -3,5 +3,6 @@
|
||||||
./media.nix
|
./media.nix
|
||||||
./system.nix
|
./system.nix
|
||||||
./pulseview.nix
|
./pulseview.nix
|
||||||
|
./navidrome.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
66
options/navidrome.nix
Normal file
66
options/navidrome.nix
Normal file
|
@ -0,0 +1,66 @@
|
||||||
|
{
|
||||||
|
lib,
|
||||||
|
config,
|
||||||
|
options,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
let
|
||||||
|
inherit (lib) mkIf mkOption mkEnableOption;
|
||||||
|
inherit (lib.types)
|
||||||
|
enum
|
||||||
|
listOf
|
||||||
|
submodule
|
||||||
|
nonEmptyStr
|
||||||
|
;
|
||||||
|
cfg = config.modules.server.navidrome;
|
||||||
|
in
|
||||||
|
{
|
||||||
|
options.modules.server.navidrome = {
|
||||||
|
enable = mkEnableOption "Navidrome";
|
||||||
|
|
||||||
|
library = {
|
||||||
|
type = mkOption {
|
||||||
|
type = enum [
|
||||||
|
"local"
|
||||||
|
"nfs"
|
||||||
|
];
|
||||||
|
default = "local";
|
||||||
|
};
|
||||||
|
path = mkOption { type = nonEmptyStr; };
|
||||||
|
source = mkOption {
|
||||||
|
default = { };
|
||||||
|
type = submodule {
|
||||||
|
options = {
|
||||||
|
ip = mkOption { type = nonEmptyStr; };
|
||||||
|
path = mkOption { type = nonEmptyStr; };
|
||||||
|
options = mkOption {
|
||||||
|
default = [
|
||||||
|
"x-systemd.automount"
|
||||||
|
"noauto"
|
||||||
|
"ro"
|
||||||
|
];
|
||||||
|
type = listOf nonEmptyStr;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
settings = options.services.navidrome.settings;
|
||||||
|
};
|
||||||
|
|
||||||
|
config = mkIf cfg.enable {
|
||||||
|
fileSystems.${cfg.library.path} = mkIf (cfg.library.type == "nfs") {
|
||||||
|
device = "${cfg.library.source.ip}:${cfg.library.source.path}";
|
||||||
|
fsType = "nfs";
|
||||||
|
options = cfg.library.source.options;
|
||||||
|
};
|
||||||
|
|
||||||
|
services.navidrome = {
|
||||||
|
enable = true;
|
||||||
|
openFirewall = true;
|
||||||
|
settings = {
|
||||||
|
MusicFolder = cfg.library.path;
|
||||||
|
} // cfg.settings;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue