mirror of
https://github.com/hercules-ci/arion.git
synced 2024-11-26 10:05:39 +03:00
18 lines
664 B
Nix
18 lines
664 B
Nix
{
|
|
project.name = "full-nixos";
|
|
services.webserver = { pkgs, lib, ... }: {
|
|
nixos.useSystemd = true;
|
|
nixos.configuration.boot.tmpOnTmpfs = true;
|
|
nixos.configuration.services.nginx.enable = true;
|
|
nixos.configuration.services.nginx.virtualHosts.localhost.root = "${pkgs.nix.doc}/share/doc/nix/manual";
|
|
nixos.configuration.services.nscd.enable = false;
|
|
nixos.configuration.system.nssModules = lib.mkForce [];
|
|
nixos.configuration.systemd.services.nginx.serviceConfig.AmbientCapabilities =
|
|
lib.mkForce [ "CAP_NET_BIND_SERVICE" ];
|
|
service.useHostStore = true;
|
|
service.ports = [
|
|
"8000:80" # host:container
|
|
];
|
|
};
|
|
}
|