nixos/hosts/alpha/sortseer.nix

13 lines
217 B
Nix
Raw Normal View History

2024-10-13 18:45:59 +02:00
{sortseer, ...}: {
imports = [
sortseer.nixosModules.default
];
# https://git.caspervk.net/caspervk/sortseer
services.sortseer.enable = true;
networking.firewall = {
allowedTCPPorts = [25];
};
}