31 lines
609 B
Nix
31 lines
609 B
Nix
|
# services to run on Unicron
|
||
|
|
||
|
|
||
|
{ config, lib, pkgs, nixos-unstable, inputs, ... }:
|
||
|
{
|
||
|
# netboot server; disabled and broken
|
||
|
services.pixiecore = {
|
||
|
enable = false;
|
||
|
openFirewall = true;
|
||
|
dhcpNoBind = true;
|
||
|
kernel = "https://boot.netboot.xyz";
|
||
|
};
|
||
|
services.searx = {
|
||
|
enable = true;
|
||
|
settings = {
|
||
|
server = {
|
||
|
port = 8888;
|
||
|
bind_address = "0.0.0.0";
|
||
|
secret_key = "secret key";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
services.jellyfin = {
|
||
|
enable = true;
|
||
|
};
|
||
|
virtualisation.docker = {
|
||
|
enable = true;
|
||
|
# storageDriver = "btrfs"; # breaks when not btrfs...
|
||
|
};
|
||
|
}
|