mirror of
https://github.com/srid/nixos-config.git
synced 2025-12-26 23:14:57 +08:00
8 lines
253 B
Nix
8 lines
253 B
Nix
{ flake, system, ... }:
|
|
{
|
|
actualism-app = {
|
|
port = 3000; # TODO: Change this, and pass to daemon (renaming `package` to `exec` or something)
|
|
domain = "actualism.app";
|
|
package = flake.inputs.actualism-app.packages.${system}.default;
|
|
};
|
|
}
|