mirror of
https://github.com/oqyude/nixos.git
synced 2026-06-10 12:16:32 +03:00
18 lines
271 B
Nix
18 lines
271 B
Nix
{
|
|
config,
|
|
inputs,
|
|
...
|
|
}:
|
|
# let
|
|
# pkgs-stable = import inputs.nixpkgs-stable { system = "x86_64-linux"; };
|
|
# in
|
|
{
|
|
services.stirling-pdf = {
|
|
enable = false;
|
|
# package = pkgs-stable.stirling-pdf;
|
|
environment = {
|
|
SERVER_PORT = 6060;
|
|
};
|
|
};
|
|
}
|