WIP: mpd services

This commit is contained in:
pazpi 2025-03-16 17:55:15 +01:00
parent 251e999069
commit dd71d9481b
4 changed files with 52 additions and 0 deletions

32
hosts/mpd/default.nix Normal file
View file

@ -0,0 +1,32 @@
{}{
config,
pkgs,
lib,
...
}:
let
p = import ../parameters.nix;
in
{
my = {
utils = {
commons.enable = true;
lxc-standard.enable = true;
};
virtualisation = {
proxmox.enable = true;
};
};
# Extra packages
environment.systemPackages = with pkgs; [ ];
services.mpd = {
enable = true;
};
networking.firewall.allowedTCPPorts = [ config.mpd.network.port ];
system.stateVersion = "24.11";
}