nix/hosts/mpd/default.nix
2025-03-16 17:55:15 +01:00

32 lines
454 B
Nix

{}{
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";
}